Skip to content

Commit

Permalink
Update test scripts for IR layer opaque pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarkall committed Feb 28, 2025
1 parent fac2b28 commit 01e1669
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions buildscripts/incremental/test.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
call activate %CONDA_ENV%

if "%OPAQUE_POINTERS%"=="yes" (
set LLVMLITE_ENABLE_OPAQUE_POINTERS=1
echo "Testing with opaque pointers enabled"
set LLVMLITE_ENABLE_IR_LAYER_TYPED_POINTERS=0
echo "Testing with IR layer opaque pointers enabled"
) else (
echo "Testing with opaque pointers disabled"
echo "Testing with IR layer opaque pointers disabled"
)

python runtests.py -v
6 changes: 3 additions & 3 deletions buildscripts/incremental/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ set -v -e
python --version

if [ "$OPAQUE_POINTERS" == "yes" ]; then
export LLVMLITE_ENABLE_OPAQUE_POINTERS=1
echo "Testing with opaque pointers enabled"
export LLVMLITE_ENABLE_IR_LAYER_TYPED_POINTERS=0
echo "Testing with IR layer opaque pointers enabled"
else
echo "Testing with opaque pointers disabled"
echo "Testing with IR layer opaque pointers disabled"
fi

if [ "$WHEEL" == "yes" ]; then
Expand Down

0 comments on commit 01e1669

Please sign in to comment.