Fix the x86 build and re-enable x86 CI (#6467)

This was a miss.
This commit is contained in:
Dustin L. Howett 2020-06-11 10:04:42 -07:00 committed by GitHub
parent 7fc735525d
commit 60630cf7c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -47,7 +47,6 @@ stages:
- stage: Build_x86
displayName: Build x86
dependsOn: []
condition: not(eq(variables['Build.Reason'], 'PullRequest'))
jobs:
- template: ./templates/build-console-ci.yml
parameters:

View file

@ -23,14 +23,14 @@ class BaseTests
Log::Comment(L"Expand vector.");
til::manage_vector(foo, 30, shrinkThreshold);
VERIFY_ARE_EQUAL(30, foo.capacity());
VERIFY_ARE_EQUAL(30u, foo.capacity());
Log::Comment(L"Try shrink but by not enough for threshold.");
til::manage_vector(foo, 18, shrinkThreshold);
VERIFY_ARE_EQUAL(30, foo.capacity());
VERIFY_ARE_EQUAL(30u, foo.capacity());
Log::Comment(L"Shrink because it is meeting threshold.");
til::manage_vector(foo, 15, shrinkThreshold);
VERIFY_ARE_EQUAL(15, foo.capacity());
VERIFY_ARE_EQUAL(15u, foo.capacity());
}
};