Skip to content

Commit

Permalink
[libcxx] Fix pop_back() tests to make sure they don't always just pass
Browse files Browse the repository at this point in the history
llvm-svn: 349071
  • Loading branch information
ldionne committed Dec 13, 2018
1 parent 405c510 commit 5f1706f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -22,4 +22,5 @@ int main() {
q.push_back(0);
q.pop_back();
q.pop_back();
std::exit(1);
}
Expand Up @@ -22,4 +22,5 @@ int main() {
v.push_back(0);
v.pop_back();
v.pop_back();
std::exit(1);
}

0 comments on commit 5f1706f

Please sign in to comment.