We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now synthetic test is ~twice slower compared to tush.
$ time tush-check 1000.tush real 0m1.055s user 0m0.787s sys 0m0.180s $ time ./fhtagn.awk 1000.tush real 0m1.982s user 0m1.765s sys 0m0.294s
This is due to calling system("rm -f " stdOutF " " stdErrF) for every test. Can we call rm one time for all temp files at the end?
system("rm -f " stdOutF " " stdErrF)
The text was updated successfully, but these errors were encountered:
Optimize temp files removal #14
e5b5a04
Merge pull request #17 from xonixx/optimize_temp_files_removal
764f6ec
Ok, now it's faster.
$ time ./fhtagn.awk 1000.tush real 0m0.841s user 0m0.728s sys 0m0.146s
Sorry, something went wrong.
xonixx
No branches or pull requests
Now synthetic test is ~twice slower compared to tush.
This is due to calling
system("rm -f " stdOutF " " stdErrF)
for every test. Can we call rm one time for all temp files at the end?The text was updated successfully, but these errors were encountered: