stutter.test: Fix for failure seen on arch linux.
* src/ltltest/stutter.test: Reverse the logic for the test for time, in case the shell has a builtin version.
This commit is contained in:
parent
6bacbe1e92
commit
9454584074
1 changed files with 5 additions and 3 deletions
|
|
@ -28,9 +28,11 @@ randltl=../../bin/randltl
|
|||
ltlfilt=../../bin/ltlfilt
|
||||
|
||||
# Use time only if it is available
|
||||
time=
|
||||
if (time ls) >/dev/null 2>&1; then
|
||||
time=time
|
||||
time=time
|
||||
if ($time ls) >/dev/null 2>&1; then
|
||||
:
|
||||
else
|
||||
time=
|
||||
fi
|
||||
|
||||
FILE=formulae
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue