aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-02-05 15:23:58 -0500
committerDylan Baker <dylan@pnwbakers.com>2021-02-05 16:33:23 -0800
commitc3d516421fb8a08f38427076fc18758547ba89b7 (patch)
treebc6f6fdd5dc56a460d873bb9eefb0d3f046e4472
parent0d0c6ede9bcefc0715d72817cc46e21793a1a594 (diff)
downloadmeson-c3d516421fb8a08f38427076fc18758547ba89b7.zip
meson-c3d516421fb8a08f38427076fc18758547ba89b7.tar.gz
meson-c3d516421fb8a08f38427076fc18758547ba89b7.tar.bz2
run_unittests: remove double definition of the same test case
In commit 591e6e94b9fccfc49ee7093cb21735a27fd64005 we somehow ended up with an identical extra copy.
-rwxr-xr-xrun_unittests.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 94843ad..0006343 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -8632,22 +8632,6 @@ class NativeFileTests(BasePlatformTests):
else:
self.fail('Did not find bindir in build options?')
- def test_builtin_options_paths_legacy(self):
- testcase = os.path.join(self.common_test_dir, '1 trivial')
- config = self.helper_create_native_file({
- 'built-in options': {'default_library': 'static'},
- 'paths': {'bindir': 'bar'},
- })
-
- self.init(testcase, extra_args=['--native-file', config])
- configuration = self.introspect('--buildoptions')
- for each in configuration:
- if each['name'] == 'bindir':
- self.assertEqual(each['value'], 'bar')
- break
- else:
- self.fail('Did not find bindir in build options?')
-
class CrossFileTests(BasePlatformTests):