aboutsummaryrefslogtreecommitdiff
path: root/test/link/macho/stack_size/build.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-06-22 10:27:51 +0200
committerJakub Konka <kubkon@jakubkonka.com>2022-06-22 10:27:51 +0200
commit23a63f4ce445d26d7fc577eecc6c3f5ca129a007 (patch)
tree2cf2f80e1eb9cd8e64165c133ab36493814eb037 /test/link/macho/stack_size/build.zig
parentb5601a2da60df2f8f2bc6ac1ef287d4733a47df2 (diff)
downloadzig-23a63f4ce445d26d7fc577eecc6c3f5ca129a007.tar.gz
zig-23a63f4ce445d26d7fc577eecc6c3f5ca129a007.zip
link-tests: rename CheckMachOStep to CheckObjectStep and accept obj format
Diffstat (limited to 'test/link/macho/stack_size/build.zig')
-rw-r--r--test/link/macho/stack_size/build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/link/macho/stack_size/build.zig b/test/link/macho/stack_size/build.zig
index 10b5a3f83d..b840f8928c 100644
--- a/test/link/macho/stack_size/build.zig
+++ b/test/link/macho/stack_size/build.zig
@@ -13,7 +13,7 @@ pub fn build(b: *Builder) void {
exe.linkLibC();
exe.stack_size = 0x100000000;
- const check_exe = exe.checkMachO();
+ const check_exe = exe.checkObject(.macho);
check_exe.check("cmd MAIN");
check_exe.checkNext("stacksize 100000000");