mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
578 B
Bash
15 lines
578 B
Bash
#!/bin/bash
|
|
|
|
# Check some basic test dependencies
|
|
if ! command -v env_parallel &> /dev/null; then
|
|
echo 'Error: The `env_parallel` command could not be found. You should run `setup-dev.sh` to install development dependencies.'
|
|
echo '(Alternatively, run ./tests.sh with `--serial` to skip using parallel test running. However, if `env_parallel` is missing, it is likely that other dependencies like the `zig` compiler are also missing)'
|
|
exit
|
|
fi
|
|
|
|
# Run integration tests
|
|
(cd tests/gdb-tests && ./tests.sh $@)
|
|
|
|
# Run unit tests
|
|
# coverage run -m pytest tests/unit-tests
|