Differences From Artifact [f619a539fc]:
- File gc_core/js/tests.js — part of check-in [ed1de3fcde] at 2017-05-19 18:10:27 on branch trunk — [core] [js] tests: don’t test rules beginning with p_ or d_ (user: olr, size: 5433) [annotate] [blame] [check-ins using]
To Artifact [24427fff6b]:
- File gc_core/js/tests.js — part of check-in [dae74786cd] at 2017-06-04 10:08:05 on branch trunk — [core] [js] return test number every 1000 lines instead of 100 (user: olr, size: 5434) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
62 63 64 65 66 67 68 |
"\n found: " + sFoundErrors +
"\n errors: \n" + sListErr;
nInvalid = nInvalid + 1
}
nTotal = nTotal + 1;
}
i = i + 1;
| | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
"\n found: " + sFoundErrors +
"\n errors: \n" + sListErr;
nInvalid = nInvalid + 1
}
nTotal = nTotal + 1;
}
i = i + 1;
if (i % 1000 === 0) {
yield i.toString();
}
}
bShowUntested = true;
}
catch (e) {
helpers.logerror(e);
|
| ︙ | ︙ |