Skip to content

Commit

Permalink
[test] Make sure that guess/RTE/guess_close_stdout_*.cpp no longer fa…
Browse files Browse the repository at this point in the history
…il due to exceeding wall time limit
  • Loading branch information
mpsijm committed Feb 21, 2024
1 parent 45a7e32 commit 3e0fe03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
int main() {
using namespace std::chrono_literals;
std::fclose(stdout);
std::this_thread::sleep_for(1s);
std::this_thread::sleep_for(0.5s);
assert(false);
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
int main() {
using namespace std::chrono_literals;
std::fclose(stdout);
std::this_thread::sleep_for(1s);
std::this_thread::sleep_for(0.5s);
exit(1);
}

0 comments on commit 3e0fe03

Please sign in to comment.