Skip to content

Commit a8a4b38

Browse files
authored
Test interopWithC.chpl in --library mode by adding interopWithChpl.test.c (chapel-lang#26762)
[reviewed by @lydia-duncan and @ShreyasKhandekar ] Our test system wasn't testing a compilation that our Makefile did, which led to Cray/chapel-private#7145 creeping into the code base, later fixed by chapel-lang#26741. Here, I'm adding a C test that compiles interopWithC.chpl as a library to lock that in and reduce the chances of such a divergence happening again. I did not do more than verify that the test output was what I'd expect given the interopWithC.good file and the calls that the new test adds. Maybe more importantly, I didn't do anything to review the primer from a readability/comprehensibility standpoint since I wasn't really changing its contents, just adding a C file to exercise them more. Resolves chapel-lang#26751.
2 parents b588161 + af09157 commit a8a4b38

5 files changed

+33
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
lib/interopWithC.h
2+
lib/libinteropWithC.a
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Sum of Array: 55
2+
20
3+
11
4+
(x = 5)
5+
(x = 120)
6+
9.0
7+
Called foo()
8+
14
9+
14
10+
17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Llib/ -linteropWithC `$CHPL_HOME/util/config/compileline --libraries`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
echo Compiling interopWithC.chpl
3+
$3 --library --static interopWithC.chpl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#include "lib/interopWithC.h"
2+
3+
int main(int argc, char* argv[]) {
4+
// initialize the library's copy of the Chapel runtime
5+
chpl_library_init(argc, argv);
6+
7+
// execute the module initialization (module-level code) for
8+
// 'interopWithC', including that of any modules it uses or imports
9+
chpl__init_interopWithC(1, 2);
10+
11+
// call its exported routines
12+
foo();
13+
alsoCallsBaz();
14+
callUseMyType();
15+
16+
chpl_library_finalize();
17+
}

0 commit comments

Comments
 (0)