Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,5 @@ jobs:
# Only set GITHUB_TOKEN if it's available in secrets (for CI)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
sbt "testOnly br.unb.cic.securibench.deprecated.SecuribenchTestSuite"
./run-tests.sh --android-sdk $RUNNER_TEMP/android-sdk --taint-bench $RUNNER_TEMP/TaintBench AndroidTaintBenchSuiteExperiment1
./scripts/run-securibench.sh
# ./scripts/run-taintbench.sh --android-sdk $RUNNER_TEMP/android-sdk --taint-bench $RUNNER_TEMP/TaintBench AndroidTaintBenchSuiteExperiment1
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,21 @@ To have detailed information about each test category run, [see here.](modules/s

To have detailed information about each test category run, [see here.](modules/securibench/src/docs-metrics/jsvfa/jsvfa-metrics-v0.6.1.md) (*computed in November 2025.*)

##### Common issues
#### Running Securibench Tests

You can run Securibench tests in two ways:

**1. Using the convenience shell script (Recommended):**
```bash
./scripts/run-securibench.sh
```

**2. Using SBT testOnly command:**
```bash
sbt "testOnly br.unb.cic.securibench.deprecated.SecuribenchTestSuite"
```

#### Common issues
From the 47 tests, we have categorized nine (9) issues.

[i] **Wrong counting**: Some tests from the Securibench benchmark are incorrectly labeled, leading to wrong expected values.
Expand Down Expand Up @@ -422,9 +436,9 @@ You can run Android tests in several ways:

**1. Using the convenience shell script (Recommended):**
```bash
./run-tests.sh --android-sdk /path/to/android/sdk --taint-bench /path/to/taintbench roidsec
./run-tests.sh --android-sdk /path/to/android/sdk --taint-bench /path/to/taintbench android
./run-tests.sh --android-sdk /path/to/android/sdk --taint-bench /path/to/taintbench all
./scripts/run-taintbench.sh --android-sdk /path/to/android/sdk --taint-bench /path/to/taintbench roidsec
./scripts/run-taintbench.sh --android-sdk /path/to/android/sdk --taint-bench /path/to/taintbench android
./scripts/run-taintbench.sh --android-sdk /path/to/android/sdk --taint-bench /path/to/taintbench all
```

**2. Using environment variables:**
Expand Down
156 changes: 0 additions & 156 deletions run-tests.sh

This file was deleted.