Mercurial > repos > public > sbplib_julia
comparison benchmark/benchmark_utils.jl @ 1306:c14370f7c731 tooling/benchmarks
Add note about how to hande command exit
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 26 Apr 2023 13:09:55 +0200 |
parents | 7894d29ea8fa |
children | 27afd53511d4 |
comparison
equal
deleted
inserted
replaced
1305:7894d29ea8fa | 1306:c14370f7c731 |
---|---|
185 # Make a secret temporary commit | 185 # Make a secret temporary commit |
186 # run benchmarkresult | 186 # run benchmarkresult |
187 # uncommit the temporary commit | 187 # uncommit the temporary commit |
188 # verbose flag on commit will print the revision id of the new commit. | 188 # verbose flag on commit will print the revision id of the new commit. |
189 # TBD: What parts are PkgBenchmark contributing? Can it be stripped out? | 189 # TBD: What parts are PkgBenchmark contributing? Can it be stripped out? |
190 | |
191 | |
192 ## Catching the exit code and errors from a command can be done with code similar to | |
193 # proc = open(cmd) | |
194 # if success(proc) | |
195 | |
196 # else | |
197 | |
198 # end |