Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Ulmer committed Nov 18, 2024
1 parent e683d2f commit 61c6e57
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/criterion/criterion_endless_loop/deps.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
m
11 changes: 11 additions & 0 deletions tests/criterion/criterion_endless_loop/test00.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include <cmath>
#include <criterion/criterion.h>

Test(failing, endlessloop) {
unsigned long int ticker=0;
while(1) {
if(++ticker%100==0) {
printf("%lu\n",ticker/100);
}
}
}

0 comments on commit 61c6e57

Please sign in to comment.