summaryrefslogtreecommitdiff
path: root/test/hello
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello')
-rw-r--r--test/hello/gyptest-all.py2
-rw-r--r--test/hello/gyptest-default.py2
-rw-r--r--test/hello/gyptest-disable-regyp.py4
-rw-r--r--test/hello/gyptest-regyp.py4
-rwxr-xr-xtest/hello/gyptest-target.py2
5 files changed, 7 insertions, 7 deletions
diff --git a/test/hello/gyptest-all.py b/test/hello/gyptest-all.py
index 04460a97..8da808f2 100644
--- a/test/hello/gyptest-all.py
+++ b/test/hello/gyptest-all.py
@@ -11,7 +11,7 @@ test = TestGyp.TestGyp()
test.run_gyp('hello.gyp')
-test.build_all('hello.gyp')
+test.build('hello.gyp', test.ALL)
test.run_built_executable('hello', stdout="Hello, world!\n")
diff --git a/test/hello/gyptest-default.py b/test/hello/gyptest-default.py
index 7f659149..5e77a809 100644
--- a/test/hello/gyptest-default.py
+++ b/test/hello/gyptest-default.py
@@ -11,7 +11,7 @@ test = TestGyp.TestGyp()
test.run_gyp('hello.gyp')
-test.build_default('hello.gyp')
+test.build('hello.gyp')
test.run_built_executable('hello', stdout="Hello, world!\n")
diff --git a/test/hello/gyptest-disable-regyp.py b/test/hello/gyptest-disable-regyp.py
index ffd1276d..8114ef40 100644
--- a/test/hello/gyptest-disable-regyp.py
+++ b/test/hello/gyptest-disable-regyp.py
@@ -11,7 +11,7 @@ test = TestGyp.TestGyp()
test.run_gyp('hello.gyp', '-Gauto_regeneration=0')
-test.build_all('hello.gyp')
+test.build('hello.gyp', test.ALL)
test.run_built_executable('hello', stdout="Hello, world!\n")
@@ -20,7 +20,7 @@ test.run_built_executable('hello', stdout="Hello, world!\n")
test.sleep()
test.write('hello.gyp', test.read('hello2.gyp'))
-test.build_all('hello.gyp')
+test.build('hello.gyp', test.ALL)
# Should still be the old executable, as regeneration was disabled.
test.run_built_executable('hello', stdout="Hello, world!\n")
diff --git a/test/hello/gyptest-regyp.py b/test/hello/gyptest-regyp.py
index a4b9c131..6d16ac57 100644
--- a/test/hello/gyptest-regyp.py
+++ b/test/hello/gyptest-regyp.py
@@ -12,7 +12,7 @@ test = TestGyp.TestGyp(formats=['make'])
test.run_gyp('hello.gyp')
-test.build_all('hello.gyp')
+test.build('hello.gyp', test.ALL)
test.run_built_executable('hello', stdout="Hello, world!\n")
@@ -21,7 +21,7 @@ test.run_built_executable('hello', stdout="Hello, world!\n")
test.sleep()
test.write('hello.gyp', test.read('hello2.gyp'))
-test.build_all('hello.gyp')
+test.build('hello.gyp', test.ALL)
test.run_built_executable('hello', stdout="Hello, two!\n")
diff --git a/test/hello/gyptest-target.py b/test/hello/gyptest-target.py
index 0cbafb76..ffb67277 100755
--- a/test/hello/gyptest-target.py
+++ b/test/hello/gyptest-target.py
@@ -11,7 +11,7 @@ test = TestGyp.TestGyp()
test.run_gyp('hello.gyp')
-test.build_target('hello.gyp', 'hello')
+test.build('hello.gyp', 'hello')
test.run_built_executable('hello', stdout="Hello, world!\n")