Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
AVA
FloVer
Commits
e01c7e3f
Commit
e01c7e3f
authored
Feb 25, 2019
by
Joachim Bard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make eval scripts more platform independent
parent
47a6769d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
scripts/eval_interval.sh
scripts/eval_interval.sh
+1
-1
scripts/eval_smt.sh
scripts/eval_smt.sh
+10
-1
No files found.
scripts/eval_interval.sh
View file @
e01c7e3f
...
...
@@ -16,7 +16,7 @@ TIMECMD=""
unameOut
=
"
$(
uname
-s
)
"
case
"
${
unameOut
}
"
in
Linux
*
)
TIMECMD
=
/usr/bin/time
;;
Darwin
*
)
machine
=
/usr/local/bin/time
;;
Darwin
*
)
TIMECMD
=
/usr/local/bin/time
;;
# CYGWIN*) machine=Cygwin;;
# MINGW*) machine=MinGw;;
# *) machine="UNKNOWN:${unameOut}"
...
...
scripts/eval_smt.sh
View file @
e01c7e3f
...
...
@@ -11,7 +11,16 @@
# #
##############################################################################
TIMECMD
=
/usr/local/bin/time
TIMECMD
=
""
unameOut
=
"
$(
uname
-s
)
"
case
"
${
unameOut
}
"
in
Linux
*
)
TIMECMD
=
/usr/bin/time
;;
Darwin
*
)
TIMECMD
=
/usr/local/bin/time
;;
# CYGWIN*) machine=Cygwin;;
# MINGW*) machine=MinGw;;
# *) machine="UNKNOWN:${unameOut}"
esac
#PROVERS=(coq hol4 binary)
PROVERS
=(
coq
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment