compiler: optimize expressions such as x-x to 0 if possible and the -… #441
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Std Tests [Clang] - Windows | |
on: [push, pull_request] | |
jobs: | |
build-and-exec: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julelang/ci@main | |
- name: Test - std/internal/conv | |
run: | | |
.\bin\julec test --compiler clang -o test std/internal/conv | |
./test | |
- name: Test - std/internal/fastbytes | |
run: | | |
.\bin\julec test --compiler clang -o test std/internal/fastbytes | |
./test | |
- name: Test - std/encoding/ascii85 | |
run: | | |
.\bin\julec test --compiler clang -o test std/encoding/ascii85 | |
./test | |
- name: Test - std/encoding/base32 | |
run: | | |
.\bin\julec test --compiler clang -o test std/encoding/base32 | |
./test | |
- name: Test - std/encoding/base64 | |
run: | | |
.\bin\julec test --compiler clang -o test std/encoding/base64 | |
./test | |
- name: Test - std/encoding/json | |
run: | | |
.\bin\julec test --compiler clang -o test std/encoding/json | |
./test | |
- name: Test - std/hash/adler32 | |
run: | | |
.\bin\julec test --compiler clang -o test std/hash/adler32 | |
./test | |
- name: Test - std/hash/fnv | |
run: | | |
.\bin\julec test --compiler clang -o test std/hash/fnv | |
./test | |
- name: Test - std/maps | |
run: | | |
.\bin\julec test --compiler clang -o test std/maps | |
./test | |
- name: Test - std/math/big | |
run: | | |
.\bin\julec test --compiler clang -o test std/math/big | |
./test | |
- name: Test - std/math/cmplx | |
run: | | |
.\bin\julec test --compiler clang -o test std/math/cmplx | |
./test | |
- name: Test - std/mem | |
run: | | |
.\bin\julec test --compiler clang -o test std/mem | |
./test | |
- name: Test - std/net | |
run: | | |
.\bin\julec test --compiler clang -o test std/net | |
./test | |
- name: Test - std/slices | |
run: | | |
.\bin\julec test --compiler clang -o test std/slices | |
./test | |
- name: Test - std/unicode/utf8 | |
run: | | |
.\bin\julec test --compiler clang -o test std/unicode/utf8/test | |
./test | |
- name: Test - std/unicode/utf16 | |
run: | | |
.\bin\julec test --compiler clang -o test std/unicode/utf16/test | |
./test |