diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-18 21:31:49 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-18 22:10:22 +0200 |
commit | c7ddce163fb8f440c96649a3319ab9f1f62e38be (patch) | |
tree | 70a4778f2a8c2f67ccda1317234143b9b7f225b1 /mesonbuild/scripts/meson_benchmark.py | |
parent | 39df22bf539ce3359679643256b854f34c13fa16 (diff) | |
download | meson-c7ddce163fb8f440c96649a3319ab9f1f62e38be.zip meson-c7ddce163fb8f440c96649a3319ab9f1f62e38be.tar.gz meson-c7ddce163fb8f440c96649a3319ab9f1f62e38be.tar.bz2 |
All testing is now in mesontest.py, which simplifies a lot of stuff.
Diffstat (limited to 'mesonbuild/scripts/meson_benchmark.py')
-rwxr-xr-x | mesonbuild/scripts/meson_benchmark.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/mesonbuild/scripts/meson_benchmark.py b/mesonbuild/scripts/meson_benchmark.py deleted file mode 100755 index 553fc89..0000000 --- a/mesonbuild/scripts/meson_benchmark.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright 2015-2016 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 sys -from . import meson_test - -def run(args): - return meson_test.run(args + ['--logbase', 'benchmarklog', '--num-processes=1']) - -if __name__ == '__main__': - sys.exit(run(sys.argv[1:])) |