Activity for System Stability Tester

  • Explorer Explorer posted a comment on discussion Open Discussion

    Repost a valid link for the patch because the link on first post no longer works (due to Dropbox system change) https://www.dropbox.com/s/wx039kw6bmi4dkk/systester-fix-ptime-overflow.patch?dl=0 diff -r -u a/master.cpp b/master.cpp --- a/master.cpp 2012-07-09 04:41:48.000000000 +0800 +++ b/master.cpp 2013-07-16 15:58:17.105666977 +0800 @@ -38,7 +38,7 @@ unsigned long long prec = 0, bits, i = 0, n = 1; int p[MAX_THREADS], k = 0; char *pistr = NULL; - char column[111] = "", pxdigits[13] = "", ptime[13]...

  • Explorer Explorer posted a comment on discussion Open Discussion

    Repost a valid link for the patch because the link on first post no longer works (due to Dropbox system change) https://www.dropbox.com/s/73jy3a3aj26dbez/systester-gui-64-threads.patch?dl=0 diff -r -u a/MainWindow.ui b/MainWindow.ui --- a/MainWindow.ui 2012-07-09 04:41:47.000000000 +0800 +++ b/MainWindow.ui 2013-07-17 07:19:14.556930678 +0800 @@ -2819,6 +2819,11 @@ <string>32</string> </property> </item> + <item> + <property name="text"> + <string>64</string> + </property> + </item> </widget> <widget...

  • Explorer Explorer posted a comment on discussion Open Discussion

    Repost a valid link for the patch because the link on first post no longer works (due to Dropbox system change) https://www.dropbox.com/s/0x83b08tngi8ppf/systester-cli-args-bounds.patch?dl=0 diff -r -u a/cli/systester-cli.c b/cli/systester-cli.c --- a/cli/systester-cli.c 2012-07-09 04:41:47.000000000 +0800 +++ b/cli/systester-cli.c 2013-07-20 10:12:01.368310441 +0800 @@ -206,7 +206,11 @@ { algo = 0; arg++; - loops = determine_loops (argv[arg], algo); + if (arg < argc) + loops = determine_loops (argv[arg],...

1