move all rendertest.sh functionality into .py

This commit is contained in:
2023-11-27 12:01:11 -05:00
parent b09edd28fe
commit 8d67f409bc
2 changed files with 87 additions and 9 deletions

View File

@@ -145,5 +145,5 @@ int main(int argc, char *argv[]) {
fprintf(stderr, "loading: %.03fms, diffing: %.03fms, saving: %.03fms; total: %.03fms\n",
MS(loaded_ns - start_ns), MS(diffd_ns - loaded_ns), MS(end_ns - diffd_ns), MS(end_ns - start_ns));
return over;
return over ? 2 : 0;
}