Skip to content

Commit

Permalink
.github: Followed the removal of runtest scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
levy committed Oct 30, 2024
1 parent 3b3eae5 commit f90bd40
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/module-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# TODO: add debug/release mode when the runtest scripts can switch between
# TODO: add debug/release mode when it becomes supported
# MODEs or executables based on command line arguments or envvars
mode: ["debug"]
fail-fast: false
Expand Down Expand Up @@ -48,6 +48,5 @@ jobs:
source $GITHUB_WORKSPACE/inet/_scripts/github/build-inet.sh
echo "::group::Running module tests"
cd tests/module
./runtest
inet_run_module_tests
echo "::endgroup::"
5 changes: 2 additions & 3 deletions .github/workflows/other-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# TODO: add debug/release mode when the runtest scripts can switch between
# TODO: add debug/release mode when it becomes supported
# MODEs or executables based on command line arguments or envvars
mode: ["debug"]
testdir: ["packet", "queueing", "protocol"]
Expand Down Expand Up @@ -49,6 +49,5 @@ jobs:
source $GITHUB_WORKSPACE/inet/_scripts/github/build-inet.sh
echo "::group::Running ${{ matrix.testdir }} tests"
cd tests/${{ matrix.testdir }}
./runtest
inet_run_${{ matrix.testdir }}_tests
echo "::endgroup::"
5 changes: 2 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# TODO: add debug/release mode when the runtest scripts can switch between
# TODO: add debug/release mode when it becomes the supported
# MODEs or executables based on command line arguments or envvars
mode: ["debug"]
fail-fast: false
Expand Down Expand Up @@ -48,6 +48,5 @@ jobs:
source $GITHUB_WORKSPACE/inet/_scripts/github/build-inet.sh
echo "::group::Running unit tests"
cd tests/unit
./runtest
inet_run_unit_tests
echo "::endgroup::"

0 comments on commit f90bd40

Please sign in to comment.