diff options
| author | Matt Borgerson <contact@mborgerson.com> | 2019-12-17 21:42:03 -0700 |
|---|---|---|
| committer | Matt Borgerson <contact@mborgerson.com> | 2019-12-17 21:42:03 -0700 |
| commit | 9757ce312de4c425567c2fcc55991ab5828773cd (patch) | |
| tree | 8a2f08f3ead026da573aea361ba6802c496c6713 | |
| parent | 2434499ed2f0bec9d0584dc936f41dcc32b66997 (diff) | |
| download | gdbstub-9757ce312de4c425567c2fcc55991ab5828773cd.tar.gz | |
Move smoketest to tests dir
| -rw-r--r-- | .github/workflows/build_ubuntu.yml | 2 | ||||
| -rw-r--r-- | tests/smoketest.gdbinit (renamed from smoketest.gdbinit) | 0 | ||||
| -rwxr-xr-x | tests/smoketest.sh (renamed from smoketest.sh) | 4 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build_ubuntu.yml b/.github/workflows/build_ubuntu.yml index 1342203..7bd4254 100644 --- a/.github/workflows/build_ubuntu.yml +++ b/.github/workflows/build_ubuntu.yml @@ -19,4 +19,4 @@ jobs: make - name: Test run: | - ./smoketest.sh + ./tests/smoketest.sh diff --git a/smoketest.gdbinit b/tests/smoketest.gdbinit index 8560b5a..8560b5a 100644 --- a/smoketest.gdbinit +++ b/tests/smoketest.gdbinit diff --git a/smoketest.sh b/tests/smoketest.sh index 6a46438..0ae8ccd 100755 --- a/smoketest.sh +++ b/tests/smoketest.sh @@ -1,4 +1,4 @@ -#!/bin/bash -x +#!/bin/bash echo "Launching QEMU" qemu-system-i386 \ -serial tcp:127.0.0.1:1234,server \ @@ -7,7 +7,7 @@ qemu-system-i386 \ sleep 1 echo "Running GDB" -gdb --command smoketest.gdbinit +gdb --command tests/smoketest.gdbinit RESULT=$? echo "Terminating QEMU" |
