dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / test-cases / flat-namespace-absolute-symbol.dtest / main.c
1 // BUILD(macos): $CC foo.s -dynamiclib -o $BUILD_DIR/libfoo.dylib -install_name $RUN_DIR/libfoo.dylib
2 // BUILD(macos): $CC main.c $BUILD_DIR/libfoo.dylib -o $BUILD_DIR/flat-namespace.exe -flat_namespace
3
4 // BUILD(ios,tvos,watchos,bridgeos):
5
6 // RUN: ./flat-namespace.exe
7
8
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13
14 #include "test_support.h"
15
16 extern int myAbs1;
17 int* ptr = &myAbs1;
18
19 int main(int argc, const char* argv[], const char* envp[], const char* apple[]) {
20 if ( ptr != 0 ) {
21 FAIL("Absolute symbol not bound to zero with flat lookup");
22 }
23
24 PASS("Success");
25 }