diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2021-09-20 14:57:20 -0400 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2021-09-21 08:28:26 -0400 |
commit | ea4b99947387b8f82073d0ee746445a478d7de95 (patch) | |
tree | b9db584df0d31d0d0ec126c2388591868c47f55e /unittests | |
parent | e049494890c76ab2b74a382dea8f4f1147fe0f25 (diff) | |
download | meson-ea4b99947387b8f82073d0ee746445a478d7de95.zip meson-ea4b99947387b8f82073d0ee746445a478d7de95.tar.gz meson-ea4b99947387b8f82073d0ee746445a478d7de95.tar.bz2 |
Add platform agnostic tests
This adds a new category of tests that does not need to run on all
platforms during CI. For now only run them on Linux runners because they
are not the bottleneck.
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/platformagnostictests.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/unittests/platformagnostictests.py b/unittests/platformagnostictests.py new file mode 100644 index 0000000..b26404d --- /dev/null +++ b/unittests/platformagnostictests.py @@ -0,0 +1,34 @@ +# Copyright 2021 The Meson development team + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import os +from unittest import skipIf + +from .baseplatformtests import BasePlatformTests +from .helpers import is_ci +from mesonbuild.mesonlib import is_linux + +@skipIf(is_ci() and not is_linux(), "Run only on fast platforms") +class PlatformAgnosticTests(BasePlatformTests): + ''' + Tests that does not need to run on all platforms during CI + ''' + + def test_relative_find_program(self): + ''' + Tests that find_program() with a relative path does not find the program + in current workdir. + ''' + testdir = os.path.join(self.unit_test_dir, '99 relative find program') + self.init(testdir, workdir=testdir) |