Skip to content

Commit

Permalink
Merge pull request #2 from fontanf/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
fontanf authored Apr 5, 2024
2 parents 1f3054a + ca9919b commit 00540f8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cc_library(
git_repository(
name = "optimizationtools",
remote = "https://github.com/fontanf/optimizationtools.git",
commit = "9fd467cdbcf88e0fecdb34ca2152bd7de4d34a3a",
commit = "9ddf9e540ecda09f7877b8c6267f77fbcf15ce25",
)

local_repository(
Expand Down
20 changes: 15 additions & 5 deletions scripts/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@
+ " --internal-diving 1"
+ " --output \"" + json_output_path + "\"")
print(command)
os.system(command)
status = os.system(command)
if status != 0:
sys.exit(1)
print()
print()
print()
Expand Down Expand Up @@ -99,7 +101,9 @@
+ " --automatic-stop 1"
+ " --output \"" + json_output_path + "\"")
print(command)
os.system(command)
status = os.system(command)
if status != 0:
sys.exit(1)
print()
print()
print()
Expand Down Expand Up @@ -147,7 +151,9 @@
+ " --internal-diving 1"
+ " --output \"" + json_output_path + "\"")
print(command)
os.system(command)
status = os.system(command)
if status != 0:
sys.exit(1)
print()
print()
print()
Expand Down Expand Up @@ -195,7 +201,9 @@
+ " --internal-diving 1"
+ " --output \"" + json_output_path + "\"")
print(command)
os.system(command)
status = os.system(command)
if status != 0:
sys.exit(1)
print()
print()
print()
Expand Down Expand Up @@ -241,7 +249,9 @@
+ " --internal-diving 1"
+ " --output \"" + json_output_path + "\"")
print(command)
os.system(command)
status = os.system(command)
if status != 0:
sys.exit(1)
print()
print()
print()

0 comments on commit 00540f8

Please sign in to comment.