diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-12-03 22:48:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-03 22:48:56 +0200 |
commit | cf76ffad145eb83a0bbfce89e05b7610637ff293 (patch) | |
tree | 9d76dd2d2f2398fbca00bdfad434297246338213 /run_tests.py | |
parent | 2cf1e8da15b954725fa9c9467bfb35a516814c89 (diff) | |
parent | bccb7a8eb8f13fc747f5198ee0d77ecaf1b77be7 (diff) | |
download | meson-cf76ffad145eb83a0bbfce89e05b7610637ff293.zip meson-cf76ffad145eb83a0bbfce89e05b7610637ff293.tar.gz meson-cf76ffad145eb83a0bbfce89e05b7610637ff293.tar.bz2 |
Merge pull request #2703 from mesonbuild/msvc-library-search-fixes
Various MSVC library search fixes
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/run_tests.py b/run_tests.py index b287a1a..1cc3983 100755 --- a/run_tests.py +++ b/run_tests.py @@ -155,15 +155,6 @@ def run_configure(meson_command, commandlist): return run_configure_external(meson_exe + commandlist) return run_configure_inprocess(meson_command, commandlist) -class FakeEnvironment(object): - def __init__(self): - self.cross_info = None - self.coredata = lambda: None - self.coredata.compilers = {} - - def is_cross_build(self): - return False - def print_system_info(): print(mlog.bold('System information.').get_text(mlog.colorize_console)) print('Architecture:', platform.architecture()) |