mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
60 lines
1.2 KiB
Diff
60 lines
1.2 KiB
Diff
diff --git a/tests/meson.build b/tests/meson.build
|
|
index 536c169..0ce23f1 100644
|
|
--- a/tests/meson.build
|
|
+++ b/tests/meson.build
|
|
@@ -64,54 +64,6 @@ test('RandomIPv6Explicit',
|
|
ipcalc.full_path() + ' -6 -r 24' + '|grep Address'
|
|
]
|
|
)
|
|
-test('HostnameIPv6Localhost',
|
|
- testrunner,
|
|
- args : [
|
|
- '--test-outfile',
|
|
- ipcalc.full_path() + ' -6 -o localhost',
|
|
- files('hostname-localhost-ipv6')
|
|
- ]
|
|
-)
|
|
-test('HostnameIPv4Localhost',
|
|
- testrunner,
|
|
- args : [
|
|
- '--test-outfile',
|
|
- ipcalc.full_path() + ' -4 -o localhost',
|
|
- files('hostname-localhost-ipv4')
|
|
- ]
|
|
-)
|
|
-test('HostnameIPv4LocalhostJson',
|
|
- testrunner,
|
|
- args : [
|
|
- '--test-outfile',
|
|
- ipcalc.full_path() + ' -j -4 -o localhost',
|
|
- files('hostname-localhost-ipv4-json')
|
|
- ]
|
|
-)
|
|
-test('IPIPv6Localhost',
|
|
- testrunner,
|
|
- args : [
|
|
- '--test-outfile',
|
|
- ipcalc.full_path() + ' -h ::1',
|
|
- files('ip-localhost-ipv6')
|
|
- ]
|
|
-)
|
|
-test('IPIPv4Localhost',
|
|
- testrunner,
|
|
- args : [
|
|
- '--test-outfile',
|
|
- ipcalc.full_path() + ' -h 127.0.0.1',
|
|
- files('ip-localhost-ipv4')
|
|
- ]
|
|
-)
|
|
-test('IPIPv4LocalhostJson',
|
|
- testrunner,
|
|
- args : [
|
|
- '--test-outfile',
|
|
- ipcalc.full_path() + ' -j -h 127.0.0.1',
|
|
- files('ip-localhost-ipv4-json')
|
|
- ]
|
|
-)
|
|
# --class-prefix tests
|
|
test('AssignClassPrefix12',
|
|
testrunner,
|