diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-08-03 12:57:41 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-08-03 13:37:16 +0200 |
commit | 09fa0a0721e093144550b06f2ab7cb4275212be5 (patch) | |
tree | e1ceafb7e39f9197922dc90937bcf200a594ced6 /test/test-udev.py | |
parent | meson: use template to declare udev plugins (diff) | |
download | systemd-09fa0a0721e093144550b06f2ab7cb4275212be5.tar.xz systemd-09fa0a0721e093144550b06f2ab7cb4275212be5.zip |
test: rename udev-rule-runner -> test-udev-rule-runner
This partially revert 0454cf05d38d289474ca65c1917d414b2958f6b5.
The executable actually does not work with itself, but needs to be
combined with test-udev.py. But, even so, the executable is for testing.
In the next commit, test and normal executables are declared in the same
way, and naming of the executable becomes essential to classify them.
Let's rename the executable and prefix with 'test-'.
Diffstat (limited to 'test/test-udev.py')
-rwxr-xr-x | test/test-udev.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-udev.py b/test/test-udev.py index 710aaed3a9..02383ce4e9 100755 --- a/test/test-udev.py +++ b/test/test-udev.py @@ -43,7 +43,7 @@ SYS_SCRIPT = Path(__file__).with_name('sys-script.py') try: UDEV_BIN = Path(os.environ['UDEV_RULE_RUNNER']) except KeyError: - UDEV_BIN = Path(__file__).parent / 'manual/udev-rule-runner' + UDEV_BIN = Path(__file__).parent / 'manual/test-udev-rule-runner' UDEV_BIN = UDEV_BIN.absolute() # Those will be set by the udev_setup() fixture |