diff options
author | Moonchild <moonchild@palemoon.org> | 2021-11-28 15:46:00 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-11-28 15:46:00 +0000 |
commit | 998eac28fbe25eafe0eea8b5a0e2ca25c9f1f12e (patch) | |
tree | ab67e2d2bdfa5249c256fc98f12643d9a15f7c8c /other-licenses/gyp-deps/tools/gyp/test/restat/gyptest-restat.py | |
parent | b9df947881e005c333367fe47de8762e648e4e96 (diff) | |
download | aura-central-998eac28fbe25eafe0eea8b5a0e2ca25c9f1f12e.tar.gz |
Issue %3014 - Part 7: Move gyp and build deps to other-licenses.
Diffstat (limited to 'other-licenses/gyp-deps/tools/gyp/test/restat/gyptest-restat.py')
-rw-r--r-- | other-licenses/gyp-deps/tools/gyp/test/restat/gyptest-restat.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/other-licenses/gyp-deps/tools/gyp/test/restat/gyptest-restat.py b/other-licenses/gyp-deps/tools/gyp/test/restat/gyptest-restat.py new file mode 100644 index 000000000..87379044d --- /dev/null +++ b/other-licenses/gyp-deps/tools/gyp/test/restat/gyptest-restat.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python + +# Copyright (c) 2012 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +""" +Verify that dependent rules are executed iff a dependency action modifies its +outputs. +""" + +import TestGyp +import os + +test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) + +test.run_gyp('restat.gyp', chdir='src') + +chdir = 'relocate/src' +test.relocate('src', chdir) + +# Building 'dependent' the first time generates 'side_effect', but building it +# the second time doesn't, because 'create_intermediate' doesn't update its +# output. +test.build('restat.gyp', 'dependent', chdir=chdir) +test.built_file_must_exist('side_effect', chdir=chdir) +os.remove(test.built_file_path('side_effect', chdir=chdir)) +test.build('restat.gyp', 'dependent', chdir=chdir) +test.built_file_must_not_exist('side_effect', chdir=chdir) + +test.pass_test() |