mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-26 01:16:07 +00:00
The upstream test runner script is much better, as it only prints failing test output, and gives a summary of the test results at the end.
7 lines
116 B
Bash
Executable File
7 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
# run upstream unit tests
|
|
set -e
|
|
|
|
export ARTIFACT_DIRECTORY=$AUTOPKGTEST_ARTIFACTS
|
|
test/run-unit-tests.py
|