mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
df4f8b76ac
Split the tests into two subdirectories: those that work in pure python and those that use the C++ bindings.
14 lines
302 B
Bash
Executable File
14 lines
302 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
ROOT_DIR="$1"
|
|
shift
|
|
|
|
"$ROOT_DIR/scripts/nanobind_generate_stubs.py" "$@" | \
|
|
"$SCRIPT_DIR/nanobind_test_annotations.py"
|