[Chapel Merge] Add support for compiling multi-locale libraries w

Branch: refs/heads/master
Revision: 63fb078
Author: dlongnecke-cray
Log Message:

Merge pull request #17913 from dlongnecke-cray/multilocale-interop-llvm-again

Add support for compiling multi-locale libraries with --llvm

This PR modifies the compiler and build tools to support compiling
multi-locale libraries with --llvm.

Adjust the order of codegenPartTwo to emit C sources used for
multi-locale interop before doing anything else.

Adjust codegen_makefile to write out the tmpserver name.

Adjust runClang to include generated C source files for the server
before compiling C source files with Clang.

Adjust makeBinaryLLVM to list libraries needed to compile the
server in the link command.

Even when compiling a multi-locale library with --static, do not
throw -static when building the link command for the server. This
is because the server always relies on dynamic libraries (e.g. for
gethostname).

Add checks for the --library-python flag. Emit a fatal error if
CHPL_LIB_PIC does not equal pic. Emit a warning if the --static
flag was thrown (similar to throwing --static on OSX). If a
multi-locale library is being built, force set the link mode to
LS_DYNAMIC so that the client does not have any relocations.

Adjust Makefile.mli-static and Makefile.mli-shared to compile
the client with the host compiler. Adjust how required libraries
are included.

Clean up the C source files used to power multi-locale libraries
located in runtime/etc/src/mli.

Add a helper function to serialize byte buffers. Stop generating C
code to handle serialization of byte buffers. Emit calls to the
helper function instead.

Properly namespace all the functions used in generated C source files
with chpl_.

Adjust includes for the client and server. Now only the server will
include heavyweight runtime headers (that require linking against
the runtime).

Add wrappers for calling into zmq_send and zmq_recv. Properly
poll when ZMQ functions fail due to an interrupt and set errno
to EAGAIN.

Remove the subdirectory interop/C/c-backend and lift the contents
into interop/C.

Remove the entirety of the interop/C/llvm folder after confirming
that the contents are more or less identical to the tests in
interop/C, and that all tests in interop/C pass with --llvm.

Stop supporting the c_string type in multi-locale libraries.

Remove any multi-locale library tests that try to use c_string.

Adjust interop/python/multilocale to properly set LD_LIBRARY_PATH
on Linux. This will prevent linker errors at load time when testing.

Adjust compileline to provide flags to print the host C compiler and
C++ compiler.

Adjust lookForBadRTCalls to skip chpl-mli-libc-wrappers.h. Only C
source files that power multi-locale libraries live in this folder.
The shims they contain may make calls to libc (for the client).

Adjust sub_test.py to compile the client with the host compiler when
testing a ml-test.c file.

Remove any LLVM related skipifs for multi-locale library tests.

Reviewed by @ronawho, @lydia-duncan, @mppf, @gbtitus. Thanks!

FUTURE WORK:

  • Make the multi-locale library client/server protocol handshake
    before terminating either endpoint with an error. Currently
    the client or server can be left hanging forever. (There is a
    lot of work that could be done to make the RPC protocol
    more robust.)
  • Support running Python interop tests within sub_test. We could
    have sub_test set the LD_LIBRARY_PATH if needed before
    running the test. This would remove a lot of redundant .prediff
    and .lastcompopts files.
  • Stop supporting c_string in single-locale libraries.
  • Stop including stdchpl.h in the generated client library header.
  • Stop using macros to override chpl_malloc and chpl_free in
    the client header.
  • Stop linking in the Chapel runtime and third-party libraries into
    the client executable across all tests.

TESTING:

  • [x] interop with COMM=none, pic, LLVM=system
    Python support, --target-compiler=gnu
  • [x] interop with COMM=gasnet, pic, LLVM=system
    Python support, --target-compiler=gnu
  • [x] interop with COMM=none, pic, LLVM=system
    Python support, --target-compiler=llvm
  • [x] interop with COMM=gasnet, pic, LLVM=system
    Python support, --target-compiler=llvm
  • [x] interop with COMM=none, pic, LLVM=none,
    Python support
  • [x] interop with COMM=gasnet, pic, LLVM=none
    Python support
  • [x] ALL with COMM=none, pic, LLVM=bundled
  • [x] ALL with COMM=gasnet, pic, LLVM=bundled

Signed-off-by: David Longnecker dlongnecke-cray@users.noreply.github.com

Modified Files:
A runtime/etc/src/mli/chpl-mli-client-runtime.c

A runtime/etc/src/mli/chpl-mli-common-runtime.c
A runtime/etc/src/mli/chpl-mli-libc-wrappers.h
A runtime/etc/src/mli/chpl-mli-server-runtime.c
A test/interop/C/PRECOMP
A test/interop/C/SKIPIF
A test/interop/C/deinit/.gitignore
A test/interop/C/deinit/callMyLib.cleanfiles
A test/interop/C/deinit/callMyLib.good
A test/interop/C/deinit/callMyLib.lastcompopts
A test/interop/C/deinit/callMyLib.precomp
A test/interop/C/deinit/callMyLib.test.c
A test/interop/C/deinit/myLib.chpl
A test/interop/C/deinit/myLib.notest
A test/interop/C/errorMessage.skipif
A test/interop/C/errorMessage/.gitignore
A test/interop/C/errorMessage/CLEANFILES
A test/interop/C/errorMessage/SKIPIF
A test/interop/C/errorMessage/debugFlag/.gitignore
A test/interop/C/errorMessage/debugFlag/debugFlag.chpl
A test/interop/C/errorMessage/debugFlag/debugFlag.comm-none.good
A test/interop/C/errorMessage/debugFlag/debugFlag.compopts
A test/interop/C/errorMessage/debugFlag/debugFlag.good
A test/interop/C/errorMessage/debugFlag/debugFlag.noexec
A test/interop/C/errorMessage/defaultValueWarning.chpl
A test/interop/C/errorMessage/defaultValueWarning.compopts
A test/interop/C/errorMessage/defaultValueWarning.good
A test/interop/C/errorMessage/defaultValueWarning.noexec
A test/interop/C/errorMessage/hasMain.chpl
A test/interop/C/errorMessage/hasMain.compopts
A test/interop/C/errorMessage/hasMain.good
A test/interop/C/errorMessage/hasMain.noexec
A test/interop/C/errorMessage/multiMod/.gitignore
A test/interop/C/errorMessage/multiMod/C.chpl
A test/interop/C/errorMessage/multiMod/C.notest
A test/interop/C/errorMessage/multiMod/SKIPIF
A test/interop/C/errorMessage/multiMod/callMultiModLib.cleanfiles
A test/interop/C/errorMessage/multiMod/callMultiModLib.good
A test/interop/C/errorMessage/multiMod/callMultiModLib.lastcompopts
A test/interop/C/errorMessage/multiMod/callMultiModLib.precomp
A test/interop/C/errorMessage/multiMod/callMultiModLib.test.c
A test/interop/C/errorMessage/multiMod/multipleModules.chpl
A test/interop/C/errorMessage/multiMod/multipleModules.cleanfiles
A test/interop/C/errorMessage/multiMod/multipleModules.compopts
A test/interop/C/errorMessage/multiMod/multipleModules.error.good
A test/interop/C/errorMessage/multiMod/multipleModules.good
A test/interop/C/errorMessage/multiMod/multipleModules.noexec
A test/interop/C/errorMessage/multiMod/sub_test
A test/interop/C/errorMessage/use_defaultValueWarning.cleanfiles
A test/interop/C/errorMessage/use_defaultValueWarning.good
A test/interop/C/errorMessage/use_defaultValueWarning.lastcompopts
A test/interop/C/errorMessage/use_defaultValueWarning.precomp
A test/interop/C/errorMessage/use_defaultValueWarning.test.c
A test/interop/C/exportArray.skipif
A test/interop/C/exportArray/.gitignore
A test/interop/C/exportArray/arrayArg_queriedDomain.chpl
A test/interop/C/exportArray/arrayArg_queriedDomain.notest
A test/interop/C/exportArray/arrayOpaquePointer.chpl
A test/interop/C/exportArray/arrayOpaquePointer.notest
A test/interop/C/exportArray/arrayOpaquePointer_noArgDom.bad
A test/interop/C/exportArray/arrayOpaquePointer_noArgDom.chpl
A test/interop/C/exportArray/arrayOpaquePointer_noArgDom.compopts
A test/interop/C/exportArray/arrayOpaquePointer_noArgDom.future
A test/interop/C/exportArray/arrayOpaquePointer_noArgDom.good
A test/interop/C/exportArray/arrayOpaquePointer_noArgDom.noexec
A test/interop/C/exportArray/arrayOpaquePointer_noArgDom.skipif
A test/interop/C/exportArray/array_provider.c
A test/interop/C/exportArray/array_provider.h
A test/interop/C/exportArray/array_provider_real.c
A test/interop/C/exportArray/array_provider_real.h
A test/interop/C/exportArray/callArrayArg_queriedDomain.cleanfiles
A test/interop/C/exportArray/callArrayArg_queriedDomain.good
A test/interop/C/exportArray/callArrayArg_queriedDomain.lastcompopts
A test/interop/C/exportArray/callArrayArg_queriedDomain.precomp
A test/interop/C/exportArray/callArrayArg_queriedDomain.test.c
A test/interop/C/exportArray/callArrayOpaquePointer.cleanfiles
A test/interop/C/exportArray/callArrayOpaquePointer.good
A test/interop/C/exportArray/callArrayOpaquePointer.lastcompopts
A test/interop/C/exportArray/callArrayOpaquePointer.precomp
A test/interop/C/exportArray/callArrayOpaquePointer.test.c
A test/interop/C/exportArray/callCheckIfEmpty.cleanfiles
A test/interop/C/exportArray/callCheckIfEmpty.good
A test/interop/C/exportArray/callCheckIfEmpty.lastcompopts
A test/interop/C/exportArray/callCheckIfEmpty.precomp
A test/interop/C/exportArray/callCheckIfEmpty.test.c
A test/interop/C/exportArray/callExported2Arg.cleanfiles
A test/interop/C/exportArray/callExported2Arg.good
A test/interop/C/exportArray/callExported2Arg.lastcompopts
A test/interop/C/exportArray/callExported2Arg.precomp
A test/interop/C/exportArray/callExported2Arg.test.c
A test/interop/C/exportArray/callExported2ArgDiff.cleanfiles
A test/interop/C/exportArray/callExported2ArgDiff.good
A test/interop/C/exportArray/callExported2ArgDiff.lastcompopts
A test/interop/C/exportArray/callExported2ArgDiff.precomp
A test/interop/C/exportArray/callExported2ArgDiff.test.c
A test/interop/C/exportArray/callExported2Arrays.cleanfiles
A test/interop/C/exportArray/callExported2Arrays.good
A test/interop/C/exportArray/callExported2Arrays.lastcompopts
A test/interop/C/exportArray/callExported2Arrays.precomp
A test/interop/C/exportArray/callExported2Arrays.test.c
A test/interop/C/exportArray/callExportedArrayFunc.cleanfiles
A test/interop/C/exportArray/callExportedArrayFunc.good
A test/interop/C/exportArray/callExportedArrayFunc.lastcompopts
A test/interop/C/exportArray/callExportedArrayFunc.precomp
A test/interop/C/exportArray/callExportedArrayFunc.test.c
A test/interop/C/exportArray/callExportedExplicit.cleanfiles
A test/interop/C/exportArray/callExportedExplicit.good
A test/interop/C/exportArray/callExportedExplicit.lastcompopts
A test/interop/C/exportArray/callExportedExplicit.precomp
A test/interop/C/exportArray/callExportedExplicit.test.c
A test/interop/C/exportArray/callExportedRealArr.cleanfiles
A test/interop/C/exportArray/callExportedRealArr.good
A test/interop/C/exportArray/callExportedRealArr.lastcompopts
A test/interop/C/exportArray/callExportedRealArr.precomp
A test/interop/C/exportArray/callExportedRealArr.test.c
A test/interop/C/exportArray/callExportedWithExternType.cleanfiles
A test/interop/C/exportArray/callExportedWithExternType.good
A test/interop/C/exportArray/callExportedWithExternType.lastcompopts
A test/interop/C/exportArray/callExportedWithExternType.precomp
A test/interop/C/exportArray/callExportedWithExternType.test.c
A test/interop/C/exportArray/callExportedWithPtr.cleanfiles
A test/interop/C/exportArray/callExportedWithPtr.good
A test/interop/C/exportArray/callExportedWithPtr.lastcompopts
A test/interop/C/exportArray/callExportedWithPtr.precomp
A test/interop/C/exportArray/callExportedWithPtr.test.c
A test/interop/C/exportArray/callFuncReturnsArray.cleanfiles
A test/interop/C/exportArray/callFuncReturnsArray.good
A test/interop/C/exportArray/callFuncReturnsArray.lastcompopts
A test/interop/C/exportArray/callFuncReturnsArray.precomp
A test/interop/C/exportArray/callFuncReturnsArray.test.c
A test/interop/C/exportArray/callWrapArrayAsOpaque_global.cleanfiles
A test/interop/C/exportArray/callWrapArrayAsOpaque_global.good
A test/interop/C/exportArray/callWrapArrayAsOpaque_global.lastcompopts
A test/interop/C/exportArray/callWrapArrayAsOpaque_global.precomp
A test/interop/C/exportArray/callWrapArrayAsOpaque_global.test.c
A test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.cleanfiles
A test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.good
A test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.lastcompopts
A test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.precomp
A test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.test.c
A test/interop/C/exportArray/checkIfEmpty.chpl
A test/interop/C/exportArray/checkIfEmpty.notest
A test/interop/C/exportArray/exportArrNoEltType.chpl
A test/interop/C/exportArray/exportArrNoEltType.compopts
A test/interop/C/exportArray/exportArrNoEltType.good
A test/interop/C/exportArray/exportArrNoEltType.noexec
A test/interop/C/exportArray/exportFuncWith1Arr1Not.chpl
A test/interop/C/exportArray/exportFuncWith1Arr1Not.notest
A test/interop/C/exportArray/exportFuncWith1Not1Arr.chpl
A test/interop/C/exportArray/exportFuncWith1Not1Arr.notest
A test/interop/C/exportArray/exportFuncWith2Arrays.chpl
A test/interop/C/exportArray/exportFuncWith2Arrays.notest
A test/interop/C/exportArray/exportFuncWithArrayArg.chpl
A test/interop/C/exportArray/exportFuncWithArrayArg.notest
A test/interop/C/exportArray/exportFuncWithExplicitVoidRet.chpl
A test/interop/C/exportArray/exportFuncWithExplicitVoidRet.notest
A test/interop/C/exportArray/exportFuncWithExternType.chpl
A test/interop/C/exportArray/exportFuncWithExternType.notest
A test/interop/C/exportArray/exportFuncWithPtr.chpl
A test/interop/C/exportArray/exportFuncWithPtr.notest
A test/interop/C/exportArray/exportFuncWithRealArr.chpl
A test/interop/C/exportArray/exportFuncWithRealArr.notest
A test/interop/C/exportArray/returnExternArray.chpl
A test/interop/C/exportArray/returnExternArray.notest
A test/interop/C/exportArray/returningArr/.gitignore
A test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.cleanfiles
A test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.good
A test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.lastcompopts
A test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.precomp
A test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArray.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArray.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArray.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArray.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArray.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.good
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.good
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.test.c
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.cleanfiles
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.good
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.lastcompopts
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.precomp
A test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.test.c
A test/interop/C/exportArray/returningArr/exportArrArgReturnInt.chpl
A test/interop/C/exportArray/returningArr/exportArrArgReturnInt.notest
A test/interop/C/exportArray/returningArr/returnArray.chpl
A test/interop/C/exportArray/returningArr/returnArray.notest
A test/interop/C/exportArray/returningArr/returnArrayGenericDecl.chpl
A test/interop/C/exportArray/returningArr/returnArrayGenericDecl.notest
A test/interop/C/exportArray/returningArr/returnArrayGenericDecl2.chpl
A test/interop/C/exportArray/returningArr/returnArrayGenericDecl2.notest
A test/interop/C/exportArray/returningArr/returnArrayOfReals.chpl
A test/interop/C/exportArray/returningArr/returnArrayOfReals.notest
A test/interop/C/exportArray/returningArr/returnArrayTakesArg.chpl
A test/interop/C/exportArray/returningArr/returnArrayTakesArg.notest
A test/interop/C/exportArray/returningArr/returnArrayTakesArg2.chpl
A test/interop/C/exportArray/returningArr/returnArrayTakesArg2.notest
A test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg.chpl
A test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg.notest
A test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg2.chpl
A test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg2.notest
A test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg3.chpl
A test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg3.notest
A test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg4.chpl
A test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg4.notest
A test/interop/C/exportArray/returningArr/returnBadArray-multiRank.chpl
A test/interop/C/exportArray/returningArr/returnBadArray-multiRank.good
A test/interop/C/exportArray/returningArr/returnBadArray-multiRank.noexec
A test/interop/C/exportArray/returningArr/returnBadArray-multiRank2.chpl
A test/interop/C/exportArray/returningArr/returnBadArray-multiRank2.good
A test/interop/C/exportArray/returningArr/returnBadArray-multiRank2.noexec
A test/interop/C/exportArray/returningArr/returnBadArray-strided.chpl
A test/interop/C/exportArray/returningArr/returnBadArray-strided.good
A test/interop/C/exportArray/returningArr/returnBadArray-strided.noexec
A test/interop/C/exportArray/returningArr/returnBadArray-strided2.chpl
A test/interop/C/exportArray/returningArr/returnBadArray-strided2.good
A test/interop/C/exportArray/returningArr/returnBadArray-strided2.noexec
A test/interop/C/exportArray/returningArr/returnBadArray.chpl
A test/interop/C/exportArray/returningArr/returnBadArray.notest
A test/interop/C/exportArray/returningArr/returnBadArray2.chpl
A test/interop/C/exportArray/returningArr/returnBadArray2.notest
A test/interop/C/exportArray/wrapArrayAsOpaque.chpl
A test/interop/C/exportArray/wrapArrayAsOpaque.good
A test/interop/C/exportArray/wrapArrayAsOpaque_global.chpl
A test/interop/C/exportArray/wrapArrayAsOpaque_global.notest
A test/interop/C/exportArray/wrapArrayAsOpaque_moreComplex.chpl
A test/interop/C/exportArray/wrapArrayAsOpaque_moreComplex.notest
A test/interop/C/exportArray/wrapArrayOfArrayAsOpaque.chpl
A test/interop/C/exportArray/wrapArrayOfArrayAsOpaque.good
A test/interop/C/exportArray/wrapExternArray-copy.chpl
A test/interop/C/exportArray/wrapExternArray-copy.compopts
A test/interop/C/exportArray/wrapExternArray-copy.good
A test/interop/C/exportArray/wrapExternArray-real.chpl
A test/interop/C/exportArray/wrapExternArray-real.compopts
A test/interop/C/exportArray/wrapExternArray-real.good
A test/interop/C/exportArray/wrapExternArray.chpl
A test/interop/C/exportArray/wrapExternArray.compopts
A test/interop/C/exportArray/wrapExternArray.good
A test/interop/C/exportBytes/.gitignore
A test/interop/C/exportBytes/CLEANFILES
A test/interop/C/exportBytes/PRECOMP
A test/interop/C/exportBytes/SKIPIF
A test/interop/C/exportBytes/TestLibrary.chpl
A test/interop/C/exportBytes/TestLibrary.notest
A test/interop/C/exportBytes/noArgsRetBytes.good
A test/interop/C/exportBytes/noArgsRetBytes.lastcompopts
A test/interop/C/exportBytes/noArgsRetBytes.test.c
A test/interop/C/exportString/.gitignore
A test/interop/C/exportString/CLEANFILES
A test/interop/C/exportString/PRECOMP
A test/interop/C/exportString/SKIPIF
A test/interop/C/exportString/TestLibrary.chpl
A test/interop/C/exportString/TestLibrary.notest
A test/interop/C/exportString/badFormalIntent.chpl
A test/interop/C/exportString/badFormalIntent.compopts
A test/interop/C/exportString/badFormalIntent.good
A test/interop/C/exportString/badReturnIntent.chpl
A test/interop/C/exportString/badReturnIntent.compopts
A test/interop/C/exportString/badReturnIntent.good
A test/interop/C/exportString/noArgsRetString.good
A test/interop/C/exportString/noArgsRetString.lastcompopts
A test/interop/C/exportString/noArgsRetString.test.c
A test/interop/C/exportString/nolib/exportStringRoutineNoLib.chpl
A test/interop/C/exportString/nolib/exportStringRoutineNoLib.good
A test/interop/C/exportString/stringArgsRetString.good
A test/interop/C/exportString/stringArgsRetString.lastcompopts
A test/interop/C/exportString/stringArgsRetString.test.c
A test/interop/C/exportString/stringArgsRetVoid.good
A test/interop/C/exportString/stringArgsRetVoid.lastcompopts
A test/interop/C/exportString/stringArgsRetVoid.test.c
A test/interop/C/externRecords/.gitignore
A test/interop/C/externRecords/defineRecord.h
A test/interop/C/externRecords/receiveExternRecord.chpl
A test/interop/C/externRecords/receiveExternRecord.notest
A test/interop/C/externRecords/sendExternRecord.cleanfiles
A test/interop/C/externRecords/sendExternRecord.good
A test/interop/C/externRecords/sendExternRecord.lastcompopts
A test/interop/C/externRecords/sendExternRecord.precomp
A test/interop/C/externRecords/sendExternRecord.test.c
A test/interop/C/globals/.gitignore
A test/interop/C/globals/CLEANFILES
A test/interop/C/globals/PRECOMP
A test/interop/C/globals/reliesOnGlobal.chpl
A test/interop/C/globals/reliesOnGlobal.notest
A test/interop/C/globals/use_reliesOnGlobal-library-init.good
A test/interop/C/globals/use_reliesOnGlobal-library-init.lastcompopts
A test/interop/C/globals/use_reliesOnGlobal-library-init.test.c
A test/interop/C/globals/use_reliesOnGlobal.good
A test/interop/C/globals/use_reliesOnGlobal.lastcompopts
A test/interop/C/globals/use_reliesOnGlobal.test.c
A test/interop/C/headerName/.gitignore
A test/interop/C/headerName/COMPOPTS
A test/interop/C/headerName/SKIPIF
A test/interop/C/headerName/checkHeaderAndLibSet.chpl
A test/interop/C/headerName/checkHeaderAndLibSet.cleanfiles
A test/interop/C/headerName/checkHeaderAndLibSet.compopts
A test/interop/C/headerName/checkHeaderAndLibSet.good
A test/interop/C/headerName/checkHeaderAndLibSet.noexec
A test/interop/C/headerName/checkHeaderAndLibSet.prediff
A test/interop/C/headerName/checkHeaderSet.chpl
A test/interop/C/headerName/checkHeaderSet.cleanfiles
A test/interop/C/headerName/checkHeaderSet.compopts
A test/interop/C/headerName/checkHeaderSet.good
A test/interop/C/headerName/checkHeaderSet.noexec
A test/interop/C/headerName/checkHeaderSet.prediff
A test/interop/C/headerName/checkLibNotHeaderSet.chpl
A test/interop/C/headerName/checkLibNotHeaderSet.cleanfiles
A test/interop/C/headerName/checkLibNotHeaderSet.compopts
A test/interop/C/headerName/checkLibNotHeaderSet.good
A test/interop/C/headerName/checkLibNotHeaderSet.noexec
A test/interop/C/headerName/checkLibNotHeaderSet.prediff
A test/interop/C/headerName/sub_test
A test/interop/C/hyphenated-name.chpl
A test/interop/C/hyphenated-name.cleanfiles
A test/interop/C/hyphenated-name.compopts
A test/interop/C/hyphenated-name.future
A test/interop/C/hyphenated-name.good
A test/interop/C/hyphenated-name.noexec
A test/interop/C/importConditionalCPtr.chpl
A test/interop/C/importConditionalCPtr.good
A test/interop/C/makefiles/.gitignore
A test/interop/C/makefiles/Makefile
A test/interop/C/makefiles/SKIPIF
A test/interop/C/makefiles/bar.h
A test/interop/C/makefiles/checkCommandLineLib.c
A test/interop/C/makefiles/checkEnvOverrides.chpl
A test/interop/C/makefiles/checkEnvOverrides.cleanfiles
A test/interop/C/makefiles/checkEnvOverrides.compenv
A test/interop/C/makefiles/checkEnvOverrides.compopts
A test/interop/C/makefiles/checkEnvOverrides.good
A test/interop/C/makefiles/checkEnvOverrides.noexec
A test/interop/C/makefiles/checkEnvOverrides.prediff
A test/interop/C/makefiles/checkEnvOverrides.skipif
A test/interop/C/makefiles/checkRequire.c
A test/interop/C/makefiles/checkRequire2.c
A test/interop/C/makefiles/commandLineLib.chpl
A test/interop/C/makefiles/commandLineLib.cleanfiles
A test/interop/C/makefiles/commandLineLib.compenv
A test/interop/C/makefiles/commandLineLib.compopts
A test/interop/C/makefiles/commandLineLib.good
A test/interop/C/makefiles/commandLineLib.noexec
A test/interop/C/makefiles/commandLineLib.precomp
A test/interop/C/makefiles/commandLineLib.prediff
A test/interop/C/makefiles/commandLineLib.skipif
A test/interop/C/makefiles/dynamicLinking/.gitignore
A test/interop/C/makefiles/dynamicLinking/CLEANFILES
A test/interop/C/makefiles/dynamicLinking/EXECENV
A test/interop/C/makefiles/dynamicLinking/FooLibrary.chpl
A test/interop/C/makefiles/dynamicLinking/FooLibrary.notest
A test/interop/C/makefiles/dynamicLinking/PRECOMP
A test/interop/C/makefiles/dynamicLinking/SKIPIF
A test/interop/C/makefiles/dynamicLinking/useSharedLibFromC.compopts
A test/interop/C/makefiles/dynamicLinking/useSharedLibFromC.good
A test/interop/C/makefiles/dynamicLinking/useSharedLibFromC.test.c
A test/interop/C/makefiles/envOverrides.c
A test/interop/C/makefiles/foo.c
A test/interop/C/makefiles/foo.h
A test/interop/C/makefiles/getMakefile.chpl
A test/interop/C/makefiles/getMakefile.cleanfiles
A test/interop/C/makefiles/getMakefile.compopts
A test/interop/C/makefiles/getMakefile.good
A test/interop/C/makefiles/getMakefile.noexec
A test/interop/C/makefiles/getMakefile.prediff
A test/interop/C/makefiles/mytest.c
A test/interop/C/makefiles/renamedLib.chpl
A test/interop/C/makefiles/renamedLib.cleanfiles
A test/interop/C/makefiles/renamedLib.compopts
A test/interop/C/makefiles/renamedLib.good
A test/interop/C/makefiles/renamedLib.noexec
A test/interop/C/makefiles/renamedLib.prediff
A test/interop/C/makefiles/renamedTest.c
A test/interop/C/makefiles/requireHeader.chpl
A test/interop/C/makefiles/requireHeader.cleanfiles
A test/interop/C/makefiles/requireHeader.compenv
A test/interop/C/makefiles/requireHeader.compopts
A test/interop/C/makefiles/requireHeader.good
A test/interop/C/makefiles/requireHeader.noexec
A test/interop/C/makefiles/requireHeader.prediff
A test/interop/C/makefiles/requireStmt.chpl
A test/interop/C/makefiles/requireStmt.cleanfiles
A test/interop/C/makefiles/requireStmt.compenv
A test/interop/C/makefiles/requireStmt.compopts
A test/interop/C/makefiles/requireStmt.good
A test/interop/C/makefiles/requireStmt.noexec
A test/interop/C/makefiles/requireStmt.precomp
A test/interop/C/makefiles/requireStmt.prediff
A test/interop/C/makefiles/requireStmt.skipif
A test/interop/C/makefiles/sub_test
A test/interop/C/noLibFlag/.gitignore
A test/interop/C/noLibFlag/CLEANFILES
A test/interop/C/noLibFlag/Makefile
A test/interop/C/noLibFlag/callDirSet.cleanfiles
A test/interop/C/noLibFlag/callDirSet.good
A test/interop/C/noLibFlag/callDirSet.lastcompopts
A test/interop/C/noLibFlag/callDirSet.precomp
A test/interop/C/noLibFlag/callDirSet.test.c
A test/interop/C/noLibFlag/checkHeaderSet.chpl
A test/interop/C/noLibFlag/checkHeaderSet.cleanfiles
A test/interop/C/noLibFlag/checkHeaderSet.compopts
A test/interop/C/noLibFlag/checkHeaderSet.good
A test/interop/C/noLibFlag/checkHeaderSet.noexec
A test/interop/C/noLibFlag/checkHeaderSet.prediff
A test/interop/C/noLibFlag/checkHeaderSet.skipif
A test/interop/C/noLibFlag/getMakefile.chpl
A test/interop/C/noLibFlag/getMakefile.cleanfiles
A test/interop/C/noLibFlag/getMakefile.compopts
A test/interop/C/noLibFlag/getMakefile.good
A test/interop/C/noLibFlag/getMakefile.noexec
A test/interop/C/noLibFlag/getMakefile.prediff
A test/interop/C/noLibFlag/getMakefile.skipif
A test/interop/C/noLibFlag/mytest.c
A test/interop/C/noLibFlag/setDir.chpl
A test/interop/C/noLibFlag/setDir.notest
A test/interop/C/noLibFlag/sub_test
A test/interop/C/testing.chpl
A test/interop/C/testing.notest
A test/interop/C/use_testing.cleanfiles
A test/interop/C/use_testing.good
A test/interop/C/use_testing.lastcompopts
A test/interop/C/use_testing.test.c
A test/interop/python/multilocale/initFile/.gitignore
R runtime/etc/src/mli/client_runtime.c
R runtime/etc/src/mli/common_code.c
R runtime/etc/src/mli/server_runtime.c
R test/interop/C/c-backend.skipif
R test/interop/C/c-backend/PRECOMP
R test/interop/C/c-backend/SKIPIF
R test/interop/C/c-backend/deinit/.gitignore
R test/interop/C/c-backend/deinit/callMyLib.cleanfiles
R test/interop/C/c-backend/deinit/callMyLib.good
R test/interop/C/c-backend/deinit/callMyLib.lastcompopts
R test/interop/C/c-backend/deinit/callMyLib.precomp
R test/interop/C/c-backend/deinit/callMyLib.test.c
R test/interop/C/c-backend/deinit/myLib.chpl
R test/interop/C/c-backend/deinit/myLib.notest
R test/interop/C/c-backend/errorMessage.skipif
R test/interop/C/c-backend/errorMessage/.gitignore
R test/interop/C/c-backend/errorMessage/CLEANFILES
R test/interop/C/c-backend/errorMessage/SKIPIF
R test/interop/C/c-backend/errorMessage/debugFlag/.gitignore
R test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.chpl
R test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.comm-none.good
R test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.compopts
R test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.good
R test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.noexec
R test/interop/C/c-backend/errorMessage/defaultValueWarning.chpl
R test/interop/C/c-backend/errorMessage/defaultValueWarning.compopts
R test/interop/C/c-backend/errorMessage/defaultValueWarning.good
R test/interop/C/c-backend/errorMessage/defaultValueWarning.noexec
R test/interop/C/c-backend/errorMessage/hasMain.chpl
R test/interop/C/c-backend/errorMessage/hasMain.compopts
R test/interop/C/c-backend/errorMessage/hasMain.good
R test/interop/C/c-backend/errorMessage/hasMain.noexec
R test/interop/C/c-backend/errorMessage/multiMod/.gitignore
R test/interop/C/c-backend/errorMessage/multiMod/C.chpl
R test/interop/C/c-backend/errorMessage/multiMod/C.notest
R test/interop/C/c-backend/errorMessage/multiMod/SKIPIF
R test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.cleanfiles
R test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.good
R test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.lastcompopts
R test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.precomp
R test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.test.c
R test/interop/C/c-backend/errorMessage/multiMod/multipleModules.chpl
R test/interop/C/c-backend/errorMessage/multiMod/multipleModules.cleanfiles
R test/interop/C/c-backend/errorMessage/multiMod/multipleModules.compopts
R test/interop/C/c-backend/errorMessage/multiMod/multipleModules.error.good
R test/interop/C/c-backend/errorMessage/multiMod/multipleModules.good
R test/interop/C/c-backend/errorMessage/multiMod/multipleModules.noexec
R test/interop/C/c-backend/errorMessage/multiMod/sub_test
R test/interop/C/c-backend/errorMessage/use_defaultValueWarning.cleanfiles
R test/interop/C/c-backend/errorMessage/use_defaultValueWarning.good
R test/interop/C/c-backend/errorMessage/use_defaultValueWarning.lastcompopts
R test/interop/C/c-backend/errorMessage/use_defaultValueWarning.precomp
R test/interop/C/c-backend/errorMessage/use_defaultValueWarning.test.c
R test/interop/C/c-backend/exportArray.skipif
R test/interop/C/c-backend/exportArray/.gitignore
R test/interop/C/c-backend/exportArray/arrayArg_queriedDomain.chpl
R test/interop/C/c-backend/exportArray/arrayArg_queriedDomain.notest
R test/interop/C/c-backend/exportArray/arrayOpaquePointer.chpl
R test/interop/C/c-backend/exportArray/arrayOpaquePointer.notest
R test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.bad
R test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.chpl
R test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.compopts
R test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.future
R test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.good
R test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.noexec
R test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.skipif
R test/interop/C/c-backend/exportArray/array_provider.c
R test/interop/C/c-backend/exportArray/array_provider.h
R test/interop/C/c-backend/exportArray/array_provider_real.c
R test/interop/C/c-backend/exportArray/array_provider_real.h
R test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.cleanfiles
R test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.good
R test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.lastcompopts
R test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.precomp
R test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.test.c
R test/interop/C/c-backend/exportArray/callArrayOpaquePointer.cleanfiles
R test/interop/C/c-backend/exportArray/callArrayOpaquePointer.good
R test/interop/C/c-backend/exportArray/callArrayOpaquePointer.lastcompopts
R test/interop/C/c-backend/exportArray/callArrayOpaquePointer.precomp
R test/interop/C/c-backend/exportArray/callArrayOpaquePointer.test.c
R test/interop/C/c-backend/exportArray/callCheckIfEmpty.cleanfiles
R test/interop/C/c-backend/exportArray/callCheckIfEmpty.good
R test/interop/C/c-backend/exportArray/callCheckIfEmpty.lastcompopts
R test/interop/C/c-backend/exportArray/callCheckIfEmpty.precomp
R test/interop/C/c-backend/exportArray/callCheckIfEmpty.test.c
R test/interop/C/c-backend/exportArray/callExported2Arg.cleanfiles
R test/interop/C/c-backend/exportArray/callExported2Arg.good
R test/interop/C/c-backend/exportArray/callExported2Arg.lastcompopts
R test/interop/C/c-backend/exportArray/callExported2Arg.precomp
R test/interop/C/c-backend/exportArray/callExported2Arg.test.c
R test/interop/C/c-backend/exportArray/callExported2ArgDiff.cleanfiles
R test/interop/C/c-backend/exportArray/callExported2ArgDiff.good
R test/interop/C/c-backend/exportArray/callExported2ArgDiff.lastcompopts
R test/interop/C/c-backend/exportArray/callExported2ArgDiff.precomp
R test/interop/C/c-backend/exportArray/callExported2ArgDiff.test.c
R test/interop/C/c-backend/exportArray/callExported2Arrays.cleanfiles
R test/interop/C/c-backend/exportArray/callExported2Arrays.good
R test/interop/C/c-backend/exportArray/callExported2Arrays.lastcompopts
R test/interop/C/c-backend/exportArray/callExported2Arrays.precomp
R test/interop/C/c-backend/exportArray/callExported2Arrays.test.c
R test/interop/C/c-backend/exportArray/callExportedArrayFunc.cleanfiles
R test/interop/C/c-backend/exportArray/callExportedArrayFunc.good
R test/interop/C/c-backend/exportArray/callExportedArrayFunc.lastcompopts
R test/interop/C/c-backend/exportArray/callExportedArrayFunc.precomp
R test/interop/C/c-backend/exportArray/callExportedArrayFunc.test.c
R test/interop/C/c-backend/exportArray/callExportedExplicit.cleanfiles
R test/interop/C/c-backend/exportArray/callExportedExplicit.good
R test/interop/C/c-backend/exportArray/callExportedExplicit.lastcompopts
R test/interop/C/c-backend/exportArray/callExportedExplicit.precomp
R test/interop/C/c-backend/exportArray/callExportedExplicit.test.c
R test/interop/C/c-backend/exportArray/callExportedRealArr.cleanfiles
R test/interop/C/c-backend/exportArray/callExportedRealArr.good
R test/interop/C/c-backend/exportArray/callExportedRealArr.lastcompopts
R test/interop/C/c-backend/exportArray/callExportedRealArr.precomp
R test/interop/C/c-backend/exportArray/callExportedRealArr.test.c
R test/interop/C/c-backend/exportArray/callExportedWithExternType.cleanfiles
R test/interop/C/c-backend/exportArray/callExportedWithExternType.good
R test/interop/C/c-backend/exportArray/callExportedWithExternType.lastcompopts
R test/interop/C/c-backend/exportArray/callExportedWithExternType.precomp
R test/interop/C/c-backend/exportArray/callExportedWithExternType.test.c
R test/interop/C/c-backend/exportArray/callExportedWithPtr.cleanfiles
R test/interop/C/c-backend/exportArray/callExportedWithPtr.good
R test/interop/C/c-backend/exportArray/callExportedWithPtr.lastcompopts
R test/interop/C/c-backend/exportArray/callExportedWithPtr.precomp
R test/interop/C/c-backend/exportArray/callExportedWithPtr.test.c
R test/interop/C/c-backend/exportArray/callFuncReturnsArray.cleanfiles
R test/interop/C/c-backend/exportArray/callFuncReturnsArray.good
R test/interop/C/c-backend/exportArray/callFuncReturnsArray.lastcompopts
R test/interop/C/c-backend/exportArray/callFuncReturnsArray.precomp
R test/interop/C/c-backend/exportArray/callFuncReturnsArray.test.c
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.cleanfiles
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.good
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.lastcompopts
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.precomp
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.test.c
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.cleanfiles
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.good
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.lastcompopts
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.precomp
R test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.test.c
R test/interop/C/c-backend/exportArray/checkIfEmpty.chpl
R test/interop/C/c-backend/exportArray/checkIfEmpty.notest
R test/interop/C/c-backend/exportArray/exportArrNoEltType.chpl
R test/interop/C/c-backend/exportArray/exportArrNoEltType.compopts
R test/interop/C/c-backend/exportArray/exportArrNoEltType.good
R test/interop/C/c-backend/exportArray/exportArrNoEltType.noexec
R test/interop/C/c-backend/exportArray/exportFuncWith1Arr1Not.chpl
R test/interop/C/c-backend/exportArray/exportFuncWith1Arr1Not.notest
R test/interop/C/c-backend/exportArray/exportFuncWith1Not1Arr.chpl
R test/interop/C/c-backend/exportArray/exportFuncWith1Not1Arr.notest
R test/interop/C/c-backend/exportArray/exportFuncWith2Arrays.chpl
R test/interop/C/c-backend/exportArray/exportFuncWith2Arrays.notest
R test/interop/C/c-backend/exportArray/exportFuncWithArrayArg.chpl
R test/interop/C/c-backend/exportArray/exportFuncWithArrayArg.notest
R test/interop/C/c-backend/exportArray/exportFuncWithExplicitVoidRet.chpl
R test/interop/C/c-backend/exportArray/exportFuncWithExplicitVoidRet.notest
R test/interop/C/c-backend/exportArray/exportFuncWithExternType.chpl
R test/interop/C/c-backend/exportArray/exportFuncWithExternType.notest
R test/interop/C/c-backend/exportArray/exportFuncWithPtr.chpl
R test/interop/C/c-backend/exportArray/exportFuncWithPtr.notest
R test/interop/C/c-backend/exportArray/exportFuncWithRealArr.chpl
R test/interop/C/c-backend/exportArray/exportFuncWithRealArr.notest
R test/interop/C/c-backend/exportArray/returnExternArray.chpl
R test/interop/C/c-backend/exportArray/returnExternArray.notest
R test/interop/C/c-backend/exportArray/returningArr/.gitignore
R test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.good
R test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.precomp
R test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.test.c
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.cleanfiles
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.good
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.lastcompopts
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.precomp
R test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.test.c
R test/interop/C/c-backend/exportArray/returningArr/exportArrArgReturnInt.chpl
R test/interop/C/c-backend/exportArray/returningArr/exportArrArgReturnInt.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArray.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArray.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayGenericDecl.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayGenericDecl.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayGenericDecl2.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayGenericDecl2.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayOfReals.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayOfReals.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArg.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArg.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArg2.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArg2.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg2.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg2.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg3.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg3.notest
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg4.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg4.notest
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank.good
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank.noexec
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank2.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank2.good
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank2.noexec
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided.good
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided.noexec
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided2.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided2.good
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided2.noexec
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray.notest
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray2.chpl
R test/interop/C/c-backend/exportArray/returningArr/returnBadArray2.notest
R test/interop/C/c-backend/exportArray/wrapArrayAsOpaque.chpl
R test/interop/C/c-backend/exportArray/wrapArrayAsOpaque.good
R test/interop/C/c-backend/exportArray/wrapArrayAsOpaque_global.chpl
R test/interop/C/c-backend/exportArray/wrapArrayAsOpaque_global.notest
R test/interop/C/c-backend/exportArray/wrapArrayAsOpaque_moreComplex.chpl
R test/interop/C/c-backend/exportArray/wrapArrayAsOpaque_moreComplex.notest
R test/interop/C/c-backend/exportArray/wrapArrayOfArrayAsOpaque.chpl
R test/interop/C/c-backend/exportArray/wrapArrayOfArrayAsOpaque.good
R test/interop/C/c-backend/exportArray/wrapExternArray-copy.chpl
R test/interop/C/c-backend/exportArray/wrapExternArray-copy.compopts
R test/interop/C/c-backend/exportArray/wrapExternArray-copy.good
R test/interop/C/c-backend/exportArray/wrapExternArray-real.chpl
R test/interop/C/c-backend/exportArray/wrapExternArray-real.compopts
R test/interop/C/c-backend/exportArray/wrapExternArray-real.good
R test/interop/C/c-backend/exportArray/wrapExternArray.chpl
R test/interop/C/c-backend/exportArray/wrapExternArray.compopts
R test/interop/C/c-backend/exportArray/wrapExternArray.good
R test/interop/C/c-backend/exportBytes/.gitignore
R test/interop/C/c-backend/exportBytes/CLEANFILES
R test/interop/C/c-backend/exportBytes/PRECOMP
R test/interop/C/c-backend/exportBytes/SKIPIF
R test/interop/C/c-backend/exportBytes/TestLibrary.chpl
R test/interop/C/c-backend/exportBytes/TestLibrary.notest
R test/interop/C/c-backend/exportBytes/noArgsRetBytes.good
R test/interop/C/c-backend/exportBytes/noArgsRetBytes.lastcompopts
R test/interop/C/c-backend/exportBytes/noArgsRetBytes.test.c
R test/interop/C/c-backend/exportString/.gitignore
R test/interop/C/c-backend/exportString/CLEANFILES
R test/interop/C/c-backend/exportString/PRECOMP
R test/interop/C/c-backend/exportString/SKIPIF
R test/interop/C/c-backend/exportString/TestLibrary.chpl
R test/interop/C/c-backend/exportString/TestLibrary.notest
R test/interop/C/c-backend/exportString/badFormalIntent.chpl
R test/interop/C/c-backend/exportString/badFormalIntent.compopts
R test/interop/C/c-backend/exportString/badFormalIntent.good
R test/interop/C/c-backend/exportString/badReturnIntent.chpl
R test/interop/C/c-backend/exportString/badReturnIntent.compopts
R test/interop/C/c-backend/exportString/badReturnIntent.good
R test/interop/C/c-backend/exportString/noArgsRetString.good
R test/interop/C/c-backend/exportString/noArgsRetString.lastcompopts
R test/interop/C/c-backend/exportString/noArgsRetString.test.c
R test/interop/C/c-backend/exportString/nolib/exportStringRoutineNoLib.chpl
R test/interop/C/c-backend/exportString/nolib/exportStringRoutineNoLib.good
R test/interop/C/c-backend/exportString/stringArgsRetString.good
R test/interop/C/c-backend/exportString/stringArgsRetString.lastcompopts
R test/interop/C/c-backend/exportString/stringArgsRetString.test.c
R test/interop/C/c-backend/exportString/stringArgsRetVoid.good
R test/interop/C/c-backend/exportString/stringArgsRetVoid.lastcompopts
R test/interop/C/c-backend/exportString/stringArgsRetVoid.test.c
R test/interop/C/c-backend/externRecords/.gitignore
R test/interop/C/c-backend/externRecords/defineRecord.h
R test/interop/C/c-backend/externRecords/receiveExternRecord.chpl
R test/interop/C/c-backend/externRecords/receiveExternRecord.notest
R test/interop/C/c-backend/externRecords/sendExternRecord.cleanfiles
R test/interop/C/c-backend/externRecords/sendExternRecord.good
R test/interop/C/c-backend/externRecords/sendExternRecord.lastcompopts
R test/interop/C/c-backend/externRecords/sendExternRecord.precomp
R test/interop/C/c-backend/externRecords/sendExternRecord.test.c
R test/interop/C/c-backend/globals/.gitignore
R test/interop/C/c-backend/globals/CLEANFILES
R test/interop/C/c-backend/globals/PRECOMP
R test/interop/C/c-backend/globals/reliesOnGlobal.chpl
R test/interop/C/c-backend/globals/reliesOnGlobal.notest
R test/interop/C/c-backend/globals/use_reliesOnGlobal-library-init.good
R test/interop/C/c-backend/globals/use_reliesOnGlobal-library-init.lastcompopts
R test/interop/C/c-backend/globals/use_reliesOnGlobal-library-init.test.c
R test/interop/C/c-backend/globals/use_reliesOnGlobal.good
R test/interop/C/c-backend/globals/use_reliesOnGlobal.lastcompopts
R test/interop/C/c-backend/globals/use_reliesOnGlobal.test.c
R test/interop/C/c-backend/headerName/.gitignore
R test/interop/C/c-backend/headerName/COMPOPTS
R test/interop/C/c-backend/headerName/SKIPIF
R test/interop/C/c-backend/headerName/checkHeaderAndLibSet.chpl
R test/interop/C/c-backend/headerName/checkHeaderAndLibSet.cleanfiles
R test/interop/C/c-backend/headerName/checkHeaderAndLibSet.compopts
R test/interop/C/c-backend/headerName/checkHeaderAndLibSet.good
R test/interop/C/c-backend/headerName/checkHeaderAndLibSet.noexec
R test/interop/C/c-backend/headerName/checkHeaderAndLibSet.prediff
R test/interop/C/c-backend/headerName/checkHeaderSet.chpl
R test/interop/C/c-backend/headerName/checkHeaderSet.cleanfiles
R test/interop/C/c-backend/headerName/checkHeaderSet.compopts
R test/interop/C/c-backend/headerName/checkHeaderSet.good
R test/interop/C/c-backend/headerName/checkHeaderSet.noexec
R test/interop/C/c-backend/headerName/checkHeaderSet.prediff
R test/interop/C/c-backend/headerName/checkLibNotHeaderSet.chpl
R test/interop/C/c-backend/headerName/checkLibNotHeaderSet.cleanfiles
R test/interop/C/c-backend/headerName/checkLibNotHeaderSet.compopts
R test/interop/C/c-backend/headerName/checkLibNotHeaderSet.good
R test/interop/C/c-backend/headerName/checkLibNotHeaderSet.noexec
R test/interop/C/c-backend/headerName/checkLibNotHeaderSet.prediff
R test/interop/C/c-backend/headerName/sub_test
R test/interop/C/c-backend/hyphenated-name.chpl
R test/interop/C/c-backend/hyphenated-name.cleanfiles
R test/interop/C/c-backend/hyphenated-name.compopts
R test/interop/C/c-backend/hyphenated-name.future
R test/interop/C/c-backend/hyphenated-name.good
R test/interop/C/c-backend/hyphenated-name.noexec
R test/interop/C/c-backend/importConditionalCPtr.chpl
R test/interop/C/c-backend/importConditionalCPtr.good
R test/interop/C/c-backend/makefiles/.gitignore
R test/interop/C/c-backend/makefiles/Makefile
R test/interop/C/c-backend/makefiles/SKIPIF
R test/interop/C/c-backend/makefiles/bar.h
R test/interop/C/c-backend/makefiles/checkCommandLineLib.c
R test/interop/C/c-backend/makefiles/checkEnvOverrides.chpl
R test/interop/C/c-backend/makefiles/checkEnvOverrides.cleanfiles
R test/interop/C/c-backend/makefiles/checkEnvOverrides.compenv
R test/interop/C/c-backend/makefiles/checkEnvOverrides.compopts
R test/interop/C/c-backend/makefiles/checkEnvOverrides.good
R test/interop/C/c-backend/makefiles/checkEnvOverrides.noexec
R test/interop/C/c-backend/makefiles/checkEnvOverrides.prediff
R test/interop/C/c-backend/makefiles/checkEnvOverrides.skipif
R test/interop/C/c-backend/makefiles/checkRequire.c
R test/interop/C/c-backend/makefiles/checkRequire2.c
R test/interop/C/c-backend/makefiles/commandLineLib.chpl
R test/interop/C/c-backend/makefiles/commandLineLib.cleanfiles
R test/interop/C/c-backend/makefiles/commandLineLib.compenv
R test/interop/C/c-backend/makefiles/commandLineLib.compopts
R test/interop/C/c-backend/makefiles/commandLineLib.good
R test/interop/C/c-backend/makefiles/commandLineLib.noexec
R test/interop/C/c-backend/makefiles/commandLineLib.precomp
R test/interop/C/c-backend/makefiles/commandLineLib.prediff
R test/interop/C/c-backend/makefiles/commandLineLib.skipif
R test/interop/C/c-backend/makefiles/dynamicLinking/.gitignore
R test/interop/C/c-backend/makefiles/dynamicLinking/CLEANFILES
R test/interop/C/c-backend/makefiles/dynamicLinking/EXECENV
R test/interop/C/c-backend/makefiles/dynamicLinking/FooLibrary.chpl
R test/interop/C/c-backend/makefiles/dynamicLinking/FooLibrary.notest
R test/interop/C/c-backend/makefiles/dynamicLinking/PRECOMP
R test/interop/C/c-backend/makefiles/dynamicLinking/SKIPIF
R test/interop/C/c-backend/makefiles/dynamicLinking/useSharedLibFromC.compopts
R test/interop/C/c-backend/makefiles/dynamicLinking/useSharedLibFromC.good
R test/interop/C/c-backend/makefiles/dynamicLinking/useSharedLibFromC.test.c
R test/interop/C/c-backend/makefiles/envOverrides.c
R test/interop/C/c-backend/makefiles/foo.c
R test/interop/C/c-backend/makefiles/foo.h
R test/interop/C/c-backend/makefiles/getMakefile.chpl
R test/interop/C/c-backend/makefiles/getMakefile.cleanfiles
R test/interop/C/c-backend/makefiles/getMakefile.compopts
R test/interop/C/c-backend/makefiles/getMakefile.good
R test/interop/C/c-backend/makefiles/getMakefile.noexec
R test/interop/C/c-backend/makefiles/getMakefile.prediff
R test/interop/C/c-backend/makefiles/mytest.c
R test/interop/C/c-backend/makefiles/renamedLib.chpl
R test/interop/C/c-backend/makefiles/renamedLib.cleanfiles
R test/interop/C/c-backend/makefiles/renamedLib.compopts
R test/interop/C/c-backend/makefiles/renamedLib.good
R test/interop/C/c-backend/makefiles/renamedLib.noexec
R test/interop/C/c-backend/makefiles/renamedLib.prediff
R test/interop/C/c-backend/makefiles/renamedTest.c
R test/interop/C/c-backend/makefiles/requireHeader.chpl
R test/interop/C/c-backend/makefiles/requireHeader.cleanfiles
R test/interop/C/c-backend/makefiles/requireHeader.compenv
R test/interop/C/c-backend/makefiles/requireHeader.compopts
R test/interop/C/c-backend/makefiles/requireHeader.good
R test/interop/C/c-backend/makefiles/requireHeader.noexec
R test/interop/C/c-backend/makefiles/requireHeader.prediff
R test/interop/C/c-backend/makefiles/requireStmt.chpl
R test/interop/C/c-backend/makefiles/requireStmt.cleanfiles
R test/interop/C/c-backend/makefiles/requireStmt.compenv
R test/interop/C/c-backend/makefiles/requireStmt.compopts
R test/interop/C/c-backend/makefiles/requireStmt.good
R test/interop/C/c-backend/makefiles/requireStmt.noexec
R test/interop/C/c-backend/makefiles/requireStmt.precomp
R test/interop/C/c-backend/makefiles/requireStmt.prediff
R test/interop/C/c-backend/makefiles/requireStmt.skipif
R test/interop/C/c-backend/makefiles/sub_test
R test/interop/C/c-backend/noLibFlag/.gitignore
R test/interop/C/c-backend/noLibFlag/CLEANFILES
R test/interop/C/c-backend/noLibFlag/Makefile
R test/interop/C/c-backend/noLibFlag/callDirSet.cleanfiles
R test/interop/C/c-backend/noLibFlag/callDirSet.good
R test/interop/C/c-backend/noLibFlag/callDirSet.lastcompopts
R test/interop/C/c-backend/noLibFlag/callDirSet.precomp
R test/interop/C/c-backend/noLibFlag/callDirSet.test.c
R test/interop/C/c-backend/noLibFlag/checkHeaderSet.chpl
R test/interop/C/c-backend/noLibFlag/checkHeaderSet.cleanfiles
R test/interop/C/c-backend/noLibFlag/checkHeaderSet.compopts
R test/interop/C/c-backend/noLibFlag/checkHeaderSet.good
R test/interop/C/c-backend/noLibFlag/checkHeaderSet.noexec
R test/interop/C/c-backend/noLibFlag/checkHeaderSet.prediff
R test/interop/C/c-backend/noLibFlag/checkHeaderSet.skipif
R test/interop/C/c-backend/noLibFlag/getMakefile.chpl
R test/interop/C/c-backend/noLibFlag/getMakefile.cleanfiles
R test/interop/C/c-backend/noLibFlag/getMakefile.compopts
R test/interop/C/c-backend/noLibFlag/getMakefile.good
R test/interop/C/c-backend/noLibFlag/getMakefile.noexec
R test/interop/C/c-backend/noLibFlag/getMakefile.prediff
R test/interop/C/c-backend/noLibFlag/getMakefile.skipif
R test/interop/C/c-backend/noLibFlag/mytest.c
R test/interop/C/c-backend/noLibFlag/setDir.chpl
R test/interop/C/c-backend/noLibFlag/setDir.notest
R test/interop/C/c-backend/noLibFlag/sub_test
R test/interop/C/c-backend/testing.chpl
R test/interop/C/c-backend/testing.notest
R test/interop/C/c-backend/use_testing.cleanfiles
R test/interop/C/c-backend/use_testing.good
R test/interop/C/c-backend/use_testing.lastcompopts
R test/interop/C/c-backend/use_testing.test.c
R test/interop/C/llvm.skipif
R test/interop/C/llvm/.gitignore
R test/interop/C/llvm/PRECOMP
R test/interop/C/llvm/SKIPIF
R test/interop/C/llvm/exportArray/.gitignore
R test/interop/C/llvm/exportArray/SKIPIF
R test/interop/C/llvm/exportArray/arrayArg_queriedDomain.chpl
R test/interop/C/llvm/exportArray/arrayArg_queriedDomain.notest
R test/interop/C/llvm/exportArray/arrayOpaquePointer.chpl
R test/interop/C/llvm/exportArray/arrayOpaquePointer.notest
R test/interop/C/llvm/exportArray/arrayOpaquePointer_noArgDom.bad
R test/interop/C/llvm/exportArray/arrayOpaquePointer_noArgDom.chpl
R test/interop/C/llvm/exportArray/arrayOpaquePointer_noArgDom.compopts
R test/interop/C/llvm/exportArray/arrayOpaquePointer_noArgDom.future
R test/interop/C/llvm/exportArray/arrayOpaquePointer_noArgDom.good
R test/interop/C/llvm/exportArray/arrayOpaquePointer_noArgDom.noexec
R test/interop/C/llvm/exportArray/array_provider.c
R test/interop/C/llvm/exportArray/array_provider.h
R test/interop/C/llvm/exportArray/array_provider_real.c
R test/interop/C/llvm/exportArray/array_provider_real.h
R test/interop/C/llvm/exportArray/callArrayArg_queriedDomain.cleanfiles
R test/interop/C/llvm/exportArray/callArrayArg_queriedDomain.good
R test/interop/C/llvm/exportArray/callArrayArg_queriedDomain.lastcompopts
R test/interop/C/llvm/exportArray/callArrayArg_queriedDomain.precomp
R test/interop/C/llvm/exportArray/callArrayArg_queriedDomain.test.c
R test/interop/C/llvm/exportArray/callArrayOpaquePointer.cleanfiles
R test/interop/C/llvm/exportArray/callArrayOpaquePointer.good
R test/interop/C/llvm/exportArray/callArrayOpaquePointer.lastcompopts
R test/interop/C/llvm/exportArray/callArrayOpaquePointer.precomp
R test/interop/C/llvm/exportArray/callArrayOpaquePointer.test.c
R test/interop/C/llvm/exportArray/callCheckIfEmpty.cleanfiles
R test/interop/C/llvm/exportArray/callCheckIfEmpty.good
R test/interop/C/llvm/exportArray/callCheckIfEmpty.lastcompopts
R test/interop/C/llvm/exportArray/callCheckIfEmpty.precomp
R test/interop/C/llvm/exportArray/callCheckIfEmpty.test.c
R test/interop/C/llvm/exportArray/callExported2Arg.cleanfiles
R test/interop/C/llvm/exportArray/callExported2Arg.good
R test/interop/C/llvm/exportArray/callExported2Arg.lastcompopts
R test/interop/C/llvm/exportArray/callExported2Arg.precomp
R test/interop/C/llvm/exportArray/callExported2Arg.test.c
R test/interop/C/llvm/exportArray/callExported2ArgDiff.cleanfiles
R test/interop/C/llvm/exportArray/callExported2ArgDiff.good
R test/interop/C/llvm/exportArray/callExported2ArgDiff.lastcompopts
R test/interop/C/llvm/exportArray/callExported2ArgDiff.precomp
R test/interop/C/llvm/exportArray/callExported2ArgDiff.test.c
R test/interop/C/llvm/exportArray/callExported2Arrays.cleanfiles
R test/interop/C/llvm/exportArray/callExported2Arrays.good
R test/interop/C/llvm/exportArray/callExported2Arrays.lastcompopts
R test/interop/C/llvm/exportArray/callExported2Arrays.precomp
R test/interop/C/llvm/exportArray/callExported2Arrays.test.c
R test/interop/C/llvm/exportArray/callExportedArrayFunc.cleanfiles
R test/interop/C/llvm/exportArray/callExportedArrayFunc.good
R test/interop/C/llvm/exportArray/callExportedArrayFunc.lastcompopts
R test/interop/C/llvm/exportArray/callExportedArrayFunc.precomp
R test/interop/C/llvm/exportArray/callExportedArrayFunc.test.c
R test/interop/C/llvm/exportArray/callExportedExplicit.cleanfiles
R test/interop/C/llvm/exportArray/callExportedExplicit.good
R test/interop/C/llvm/exportArray/callExportedExplicit.lastcompopts
R test/interop/C/llvm/exportArray/callExportedExplicit.precomp
R test/interop/C/llvm/exportArray/callExportedExplicit.test.c
R test/interop/C/llvm/exportArray/callExportedRealArr.cleanfiles
R test/interop/C/llvm/exportArray/callExportedRealArr.good
R test/interop/C/llvm/exportArray/callExportedRealArr.lastcompopts
R test/interop/C/llvm/exportArray/callExportedRealArr.precomp
R test/interop/C/llvm/exportArray/callExportedRealArr.test.c
R test/interop/C/llvm/exportArray/callExportedWithExternType.cleanfiles
R test/interop/C/llvm/exportArray/callExportedWithExternType.good
R test/interop/C/llvm/exportArray/callExportedWithExternType.lastcompopts
R test/interop/C/llvm/exportArray/callExportedWithExternType.precomp
R test/interop/C/llvm/exportArray/callExportedWithExternType.test.c
R test/interop/C/llvm/exportArray/callExportedWithPtr.cleanfiles
R test/interop/C/llvm/exportArray/callExportedWithPtr.good
R test/interop/C/llvm/exportArray/callExportedWithPtr.lastcompopts
R test/interop/C/llvm/exportArray/callExportedWithPtr.precomp
R test/interop/C/llvm/exportArray/callExportedWithPtr.test.c
R test/interop/C/llvm/exportArray/callFuncReturnsArray.cleanfiles
R test/interop/C/llvm/exportArray/callFuncReturnsArray.good
R test/interop/C/llvm/exportArray/callFuncReturnsArray.lastcompopts
R test/interop/C/llvm/exportArray/callFuncReturnsArray.precomp
R test/interop/C/llvm/exportArray/callFuncReturnsArray.test.c
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_global.cleanfiles
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_global.good
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_global.lastcompopts
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_global.precomp
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_global.test.c
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_moreComplex.cleanfiles
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_moreComplex.good
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_moreComplex.lastcompopts
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_moreComplex.precomp
R test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_moreComplex.test.c
R test/interop/C/llvm/exportArray/checkIfEmpty.chpl
R test/interop/C/llvm/exportArray/checkIfEmpty.notest
R test/interop/C/llvm/exportArray/exportArrNoEltType.chpl
R test/interop/C/llvm/exportArray/exportArrNoEltType.compopts
R test/interop/C/llvm/exportArray/exportArrNoEltType.good
R test/interop/C/llvm/exportArray/exportArrNoEltType.noexec
R test/interop/C/llvm/exportArray/exportFuncWith1Arr1Not.chpl
R test/interop/C/llvm/exportArray/exportFuncWith1Arr1Not.notest
R test/interop/C/llvm/exportArray/exportFuncWith1Not1Arr.chpl
R test/interop/C/llvm/exportArray/exportFuncWith1Not1Arr.notest
R test/interop/C/llvm/exportArray/exportFuncWith2Arrays.chpl
R test/interop/C/llvm/exportArray/exportFuncWith2Arrays.notest
R test/interop/C/llvm/exportArray/exportFuncWithArrayArg.chpl
R test/interop/C/llvm/exportArray/exportFuncWithArrayArg.notest
R test/interop/C/llvm/exportArray/exportFuncWithExplicitVoidRet.chpl
R test/interop/C/llvm/exportArray/exportFuncWithExplicitVoidRet.notest
R test/interop/C/llvm/exportArray/exportFuncWithExternType.chpl
R test/interop/C/llvm/exportArray/exportFuncWithExternType.notest
R test/interop/C/llvm/exportArray/exportFuncWithPtr.chpl
R test/interop/C/llvm/exportArray/exportFuncWithPtr.notest
R test/interop/C/llvm/exportArray/exportFuncWithRealArr.chpl
R test/interop/C/llvm/exportArray/exportFuncWithRealArr.notest
R test/interop/C/llvm/exportArray/returnExternArray.chpl
R test/interop/C/llvm/exportArray/returnExternArray.notest
R test/interop/C/llvm/exportArray/returningArr/.gitignore
R test/interop/C/llvm/exportArray/returningArr/callExportedArrArgReturnInt.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callExportedArrArgReturnInt.good
R test/interop/C/llvm/exportArray/returningArr/callExportedArrArgReturnInt.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callExportedArrArgReturnInt.precomp
R test/interop/C/llvm/exportArray/returningArr/callExportedArrArgReturnInt.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArray.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArray.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArray.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArray.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArray.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayOfReals.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayOfReals.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayOfReals.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayOfReals.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayOfReals.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg.future
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg2.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg2.future
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg2.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg2.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg2.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg2.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.future
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.future
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.future
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.future
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray.test.c
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray2.cleanfiles
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray2.good
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray2.lastcompopts
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray2.precomp
R test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray2.test.c
R test/interop/C/llvm/exportArray/returningArr/exportArrArgReturnInt.chpl
R test/interop/C/llvm/exportArray/returningArr/exportArrArgReturnInt.notest
R test/interop/C/llvm/exportArray/returningArr/returnArray.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArray.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayGenericDecl.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayGenericDecl.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayGenericDecl2.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayGenericDecl2.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayOfReals.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayOfReals.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArg.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArg.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArg2.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArg2.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArrayArg.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArrayArg.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArrayArg2.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArrayArg2.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArrayArg3.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArrayArg3.notest
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArrayArg4.chpl
R test/interop/C/llvm/exportArray/returningArr/returnArrayTakesArrayArg4.notest
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-multiRank.chpl
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-multiRank.good
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-multiRank.noexec
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-multiRank2.chpl
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-multiRank2.good
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-multiRank2.noexec
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-strided.chpl
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-strided.good
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-strided.noexec
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-strided2.chpl
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-strided2.good
R test/interop/C/llvm/exportArray/returningArr/returnBadArray-strided2.noexec
R test/interop/C/llvm/exportArray/returningArr/returnBadArray.chpl
R test/interop/C/llvm/exportArray/returningArr/returnBadArray.notest
R test/interop/C/llvm/exportArray/returningArr/returnBadArray2.chpl
R test/interop/C/llvm/exportArray/returningArr/returnBadArray2.notest
R test/interop/C/llvm/exportArray/wrapArrayAsOpaque.chpl
R test/interop/C/llvm/exportArray/wrapArrayAsOpaque.good
R test/interop/C/llvm/exportArray/wrapArrayAsOpaque_global.chpl
R test/interop/C/llvm/exportArray/wrapArrayAsOpaque_global.notest
R test/interop/C/llvm/exportArray/wrapArrayAsOpaque_moreComplex.chpl
R test/interop/C/llvm/exportArray/wrapArrayAsOpaque_moreComplex.notest
R test/interop/C/llvm/exportArray/wrapArrayOfArrayAsOpaque.chpl
R test/interop/C/llvm/exportArray/wrapArrayOfArrayAsOpaque.good
R test/interop/C/llvm/exportArray/wrapExternArray-copy.chpl
R test/interop/C/llvm/exportArray/wrapExternArray-copy.compopts
R test/interop/C/llvm/exportArray/wrapExternArray-copy.good
R test/interop/C/llvm/exportArray/wrapExternArray-real.chpl
R test/interop/C/llvm/exportArray/wrapExternArray-real.compopts
R test/interop/C/llvm/exportArray/wrapExternArray-real.good
R test/interop/C/llvm/exportArray/wrapExternArray.chpl
R test/interop/C/llvm/exportArray/wrapExternArray.compopts
R test/interop/C/llvm/exportArray/wrapExternArray.good
R test/interop/C/llvm/externRecords/.gitignore
R test/interop/C/llvm/externRecords/defineRecord.h
R test/interop/C/llvm/externRecords/receiveExternRecord.chpl
R test/interop/C/llvm/externRecords/receiveExternRecord.notest
R test/interop/C/llvm/externRecords/sendExternRecord.cleanfiles
R test/interop/C/llvm/externRecords/sendExternRecord.good
R test/interop/C/llvm/externRecords/sendExternRecord.lastcompopts
R test/interop/C/llvm/externRecords/sendExternRecord.precomp
R test/interop/C/llvm/externRecords/sendExternRecord.test.c
R test/interop/C/llvm/globals/.gitignore
R test/interop/C/llvm/globals/CLEANFILES
R test/interop/C/llvm/globals/PRECOMP
R test/interop/C/llvm/globals/reliesOnGlobal.chpl
R test/interop/C/llvm/globals/reliesOnGlobal.notest
R test/interop/C/llvm/globals/use_reliesOnGlobal-library-init.good
R test/interop/C/llvm/globals/use_reliesOnGlobal-library-init.lastcompopts
R test/interop/C/llvm/globals/use_reliesOnGlobal-library-init.test.c
R test/interop/C/llvm/globals/use_reliesOnGlobal.good
R test/interop/C/llvm/globals/use_reliesOnGlobal.lastcompopts
R test/interop/C/llvm/globals/use_reliesOnGlobal.test.c
R test/interop/C/llvm/headerName/.gitignore
R test/interop/C/llvm/headerName/COMPOPTS
R test/interop/C/llvm/headerName/SKIPIF
R test/interop/C/llvm/headerName/checkHeaderAndLibSet.chpl
R test/interop/C/llvm/headerName/checkHeaderAndLibSet.cleanfiles
R test/interop/C/llvm/headerName/checkHeaderAndLibSet.compopts
R test/interop/C/llvm/headerName/checkHeaderAndLibSet.good
R test/interop/C/llvm/headerName/checkHeaderAndLibSet.noexec
R test/interop/C/llvm/headerName/checkHeaderAndLibSet.prediff
R test/interop/C/llvm/headerName/checkHeaderSet.chpl
R test/interop/C/llvm/headerName/checkHeaderSet.cleanfiles
R test/interop/C/llvm/headerName/checkHeaderSet.compopts
R test/interop/C/llvm/headerName/checkHeaderSet.good
R test/interop/C/llvm/headerName/checkHeaderSet.noexec
R test/interop/C/llvm/headerName/checkHeaderSet.prediff
R test/interop/C/llvm/headerName/checkLibNotHeaderSet.chpl
R test/interop/C/llvm/headerName/checkLibNotHeaderSet.cleanfiles
R test/interop/C/llvm/headerName/checkLibNotHeaderSet.compopts
R test/interop/C/llvm/headerName/checkLibNotHeaderSet.good
R test/interop/C/llvm/headerName/checkLibNotHeaderSet.noexec
R test/interop/C/llvm/headerName/checkLibNotHeaderSet.prediff
R test/interop/C/llvm/headerName/sub_test
R test/interop/C/llvm/makefiles/.gitignore
R test/interop/C/llvm/makefiles/Makefile
R test/interop/C/llvm/makefiles/SKIPIF
R test/interop/C/llvm/makefiles/bar.h
R test/interop/C/llvm/makefiles/checkCommandLineLib.c
R test/interop/C/llvm/makefiles/checkRequire.c
R test/interop/C/llvm/makefiles/checkRequire2.c
R test/interop/C/llvm/makefiles/commandLineLib.chpl
R test/interop/C/llvm/makefiles/commandLineLib.cleanfiles
R test/interop/C/llvm/makefiles/commandLineLib.compenv
R test/interop/C/llvm/makefiles/commandLineLib.compopts
R test/interop/C/llvm/makefiles/commandLineLib.good
R test/interop/C/llvm/makefiles/commandLineLib.noexec
R test/interop/C/llvm/makefiles/commandLineLib.precomp
R test/interop/C/llvm/makefiles/commandLineLib.prediff
R test/interop/C/llvm/makefiles/commandLineLib.skipif
R test/interop/C/llvm/makefiles/dynamicLinking/.gitignore
R test/interop/C/llvm/makefiles/dynamicLinking/CLEANFILES
R test/interop/C/llvm/makefiles/dynamicLinking/EXECENV
R test/interop/C/llvm/makefiles/dynamicLinking/FooLibrary.chpl
R test/interop/C/llvm/makefiles/dynamicLinking/FooLibrary.notest
R test/interop/C/llvm/makefiles/dynamicLinking/PRECOMP
R test/interop/C/llvm/makefiles/dynamicLinking/SKIPIF
R test/interop/C/llvm/makefiles/dynamicLinking/useSharedLibFromC.compopts
R test/interop/C/llvm/makefiles/dynamicLinking/useSharedLibFromC.good
R test/interop/C/llvm/makefiles/dynamicLinking/useSharedLibFromC.test.c
R test/interop/C/llvm/makefiles/foo.c
R test/interop/C/llvm/makefiles/foo.h
R test/interop/C/llvm/makefiles/getMakefile.chpl
R test/interop/C/llvm/makefiles/getMakefile.cleanfiles
R test/interop/C/llvm/makefiles/getMakefile.compopts
R test/interop/C/llvm/makefiles/getMakefile.good
R test/interop/C/llvm/makefiles/getMakefile.noexec
R test/interop/C/llvm/makefiles/getMakefile.prediff
R test/interop/C/llvm/makefiles/mytest.c
R test/interop/C/llvm/makefiles/renamedLib.chpl
R test/interop/C/llvm/makefiles/renamedLib.cleanfiles
R test/interop/C/llvm/makefiles/renamedLib.compopts
R test/interop/C/llvm/makefiles/renamedLib.good
R test/interop/C/llvm/makefiles/renamedLib.noexec
R test/interop/C/llvm/makefiles/renamedLib.prediff
R test/interop/C/llvm/makefiles/renamedTest.c
R test/interop/C/llvm/makefiles/requireHeader.chpl
R test/interop/C/llvm/makefiles/requireHeader.cleanfiles
R test/interop/C/llvm/makefiles/requireHeader.compenv
R test/interop/C/llvm/makefiles/requireHeader.compopts
R test/interop/C/llvm/makefiles/requireHeader.good
R test/interop/C/llvm/makefiles/requireHeader.noexec
R test/interop/C/llvm/makefiles/requireHeader.prediff
R test/interop/C/llvm/makefiles/requireStmt.chpl
R test/interop/C/llvm/makefiles/requireStmt.cleanfiles
R test/interop/C/llvm/makefiles/requireStmt.compenv
R test/interop/C/llvm/makefiles/requireStmt.compopts
R test/interop/C/llvm/makefiles/requireStmt.good
R test/interop/C/llvm/makefiles/requireStmt.noexec
R test/interop/C/llvm/makefiles/requireStmt.precomp
R test/interop/C/llvm/makefiles/requireStmt.prediff
R test/interop/C/llvm/makefiles/requireStmt.skipif
R test/interop/C/llvm/makefiles/sub_test
R test/interop/C/llvm/noLibFlag/.gitignore
R test/interop/C/llvm/noLibFlag/CLEANFILES
R test/interop/C/llvm/noLibFlag/Makefile
R test/interop/C/llvm/noLibFlag/callDirSet.cleanfiles
R test/interop/C/llvm/noLibFlag/callDirSet.good
R test/interop/C/llvm/noLibFlag/callDirSet.lastcompopts
R test/interop/C/llvm/noLibFlag/callDirSet.precomp
R test/interop/C/llvm/noLibFlag/callDirSet.test.c
R test/interop/C/llvm/noLibFlag/checkHeaderSet.chpl
R test/interop/C/llvm/noLibFlag/checkHeaderSet.cleanfiles
R test/interop/C/llvm/noLibFlag/checkHeaderSet.compopts
R test/interop/C/llvm/noLibFlag/checkHeaderSet.good
R test/interop/C/llvm/noLibFlag/checkHeaderSet.noexec
R test/interop/C/llvm/noLibFlag/checkHeaderSet.prediff
R test/interop/C/llvm/noLibFlag/checkHeaderSet.skipif
R test/interop/C/llvm/noLibFlag/getMakefile.chpl
R test/interop/C/llvm/noLibFlag/getMakefile.cleanfiles
R test/interop/C/llvm/noLibFlag/getMakefile.compopts
R test/interop/C/llvm/noLibFlag/getMakefile.good
R test/interop/C/llvm/noLibFlag/getMakefile.noexec
R test/interop/C/llvm/noLibFlag/getMakefile.prediff
R test/interop/C/llvm/noLibFlag/getMakefile.skipif
R test/interop/C/llvm/noLibFlag/mytest.c
R test/interop/C/llvm/noLibFlag/setDir.chpl
R test/interop/C/llvm/noLibFlag/setDir.notest
R test/interop/C/llvm/noLibFlag/sub_test
R test/interop/C/llvm/testing.chpl
R test/interop/C/llvm/testing.notest
R test/interop/C/llvm/use_testing.cleanfiles
R test/interop/C/llvm/use_testing.good
R test/interop/C/llvm/use_testing.lastcompopts
R test/interop/C/llvm/use_testing.test.c
R test/interop/C/multilocale/cstringArgAndReturn.chpl
R test/interop/C/multilocale/cstringArgAndReturn.notest
R test/interop/C/multilocale/use_cstringArgAndReturn.cleanfiles
R test/interop/C/multilocale/use_cstringArgAndReturn.good
R test/interop/C/multilocale/use_cstringArgAndReturn.lastcompopts
R test/interop/C/multilocale/use_cstringArgAndReturn.ml-test.c
R test/interop/C/multilocale/use_cstringArgAndReturn.precomp
R test/interop/python/errorMessages/SKIPIF
R test/interop/python/multilocale/stringFunctions.chpl
R test/interop/python/multilocale/stringFunctions.good
R test/interop/python/multilocale/stringFunctions.noexec
R test/interop/python/multilocale/stringFunctions.prediff
R test/interop/python/multilocale/use_stringFunctions.py
M compiler/codegen/codegen.cpp
M compiler/codegen/mli.cpp
M compiler/include/files.h
M compiler/include/mli.h
M compiler/llvm/clangUtil.cpp
M compiler/main/driver.cpp
M compiler/util/files.cpp
M runtime/etc/Makefile.mli-common
M runtime/etc/Makefile.mli-shared
M runtime/etc/Makefile.mli-static
M test/interop/C/multilocale.skipif
M test/interop/C/multilocale/SKIPIF
M test/interop/C/multilocale/exportString/noArgsRetString.lastcompopts
M test/interop/C/multilocale/exportString/stringArgsRetString.lastcompopts
M test/interop/C/multilocale/exportString/stringArgsRetVoid.lastcompopts
M test/interop/C/multilocale/globals/.gitignore
M test/interop/C/multilocale/multipleArgs.chpl
M test/interop/C/multilocale/use_multipleArgs.good
M test/interop/C/multilocale/use_multipleArgs.ml-test.c
M test/interop/fortran/ChapelCallFortran/SKIPIF
M test/interop/python/chapelBytes/SKIPIF
M test/interop/python/chapelStrings/SKIPIF
M test/interop/python/multilocale.skipif
M test/interop/python/multilocale/SKIPIF
M test/interop/python/multilocale/boolFunctions.prediff
M test/interop/python/multilocale/chapelBytes/exportBytes.prediff
M test/interop/python/multilocale/chapelStrings/stringArgAndReturn.prediff
M test/interop/python/multilocale/checkDiffModname.prediff
M test/interop/python/multilocale/checkExplicitLibname.prediff
M test/interop/python/multilocale/checkMultipleLocales.prediff
M test/interop/python/multilocale/complexFunctions.prediff
M test/interop/python/multilocale/defaultValues.chpl
M test/interop/python/multilocale/defaultValues.good
M test/interop/python/multilocale/defaultValues.prediff
M test/interop/python/multilocale/defaultValues_complex.prediff
M test/interop/python/multilocale/defaultValues_global.prediff
M test/interop/python/multilocale/initFile/cleanupAtExit.prediff
M test/interop/python/multilocale/initFile/renameModuleAndLibDir.prediff
M test/interop/python/multilocale/realFunctions.prediff
M test/interop/python/multilocale/testing.prediff
M test/interop/python/multilocale/uintFunctions.prediff
M test/interop/python/multilocale/use_defaultValues.py
M util/config/compileline.py
M util/devel/lookForBadRTCalls
M util/test/sub_test.py

Compare: https://github.com/chapel-lang/chapel/compare/4990275c880b...63fb07876317