Skip to content

Commit

Permalink
adapt gobview test
Browse files Browse the repository at this point in the history
  • Loading branch information
stilscher committed Oct 12, 2023
1 parent 292262a commit 248673a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/locked.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
run: ./make.sh nat

- name: Build Gobview
run: opam exec -- dune build gobview
run: ./make.sh view

- name: Install selenium
run: pip3 install selenium webdriver-manager
Expand Down
4 changes: 2 additions & 2 deletions scripts/test-gobview.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def cleanup(browser, thread):
# serve GobView in different thread so it does not block the testing
def serve():
global p
goblint_http_path = '_build/default/gobview/goblint-http-server/goblint_http.exe'
p = subprocess.Popen(['./' + goblint_http_path,
goblint_http_path = './goblint-http'
p = subprocess.Popen([goblint_http_path,
'-with-goblint', '../analyzer/goblint',
'-goblint', '--set', 'files[+]', '"../analyzer/tests/regression/00-sanity/01-assert.c"'])

Expand Down

0 comments on commit 248673a

Please sign in to comment.