Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: third_party/sqlite/sqlite-src-3070603/test/threadtest3.c

Issue 826543003: [sql] Import reference version of SQLite 3.7.6.3. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: gitignore forgot some files for me. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1
2 /* 2 /*
3 ** The code in this file runs a few multi-threaded test cases using the 3 ** The code in this file runs a few multi-threaded test cases using the
4 ** SQLite library. It can be compiled to an executable on unix using the 4 ** SQLite library. It can be compiled to an executable on unix using the
5 ** following command: 5 ** following command:
6 ** 6 **
7 ** gcc -O2 threadtest3.c sqlite3.c -ldl -lpthread -lm 7 ** gcc -O2 threadtest3.c sqlite3.c -ldl -lpthread -lm
8 ** 8 **
9 ** Then run the compiled program. The exit status is non-zero if any tests 9 ** Then run the compiled program. The exit status is non-zero if any tests
10 ** failed (hopefully there is also some output to stdout to clarify what went 10 ** failed (hopefully there is also some output to stdout to clarify what went
(...skipping 1441 matching lines...) Expand 10 before | Expand all | Expand 10 after
1452 printf("Usage: %s [testname|testprefix*]\n", argv[0]); 1452 printf("Usage: %s [testname|testprefix*]\n", argv[0]);
1453 printf("Available tests are:\n"); 1453 printf("Available tests are:\n");
1454 for(i=0; i<sizeof(aTest)/sizeof(aTest[0]); i++){ 1454 for(i=0; i<sizeof(aTest)/sizeof(aTest[0]); i++){
1455 printf(" %s\n", aTest[i].zTest); 1455 printf(" %s\n", aTest[i].zTest);
1456 } 1456 }
1457 1457
1458 return 254; 1458 return 254;
1459 } 1459 }
1460 1460
1461 1461
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698