From 9e5c0c3b91f7903c7cb97368d90a9171ea63d52c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 24 Mar 2021 20:34:15 +0300 Subject: add CTest tests --- .github/workflows/ci.yml | 26 +++----------------------- 1 file changed, 3 insertions(+), 23 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a954dfa..9ba227e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,28 +62,8 @@ jobs: with: name: 'aes-tools-${{ matrix.os }}-${{ matrix.toolset }}-${{ matrix.platform }}-asm${{ matrix.use_asm }}-${{ matrix.configuration }}' path: '${{ runner.workspace }}/build/install/' - - name: Run test/nist.py + - name: Test run: | - python test/nist.py --path ../build/install/bin --log test/nist.log - Get-Content test/nist.log -Tail 5 - if: runner.os == 'Windows' - - name: Run test/cavp.py - run: | - python test/cavp.py --path ../build/install/bin --log test/cavp.log - Get-Content test/cavp.log -Tail 5 - if: runner.os == 'Windows' - - name: Run test/nist.py --boxes - run: | - python test/nist.py --path ../build/install/bin --log test/nist.log --boxes - Get-Content test/nist.log -Tail 5 - if: runner.os == 'Windows' - - name: Run test/cavp.py --boxes - run: | - python test/cavp.py --path ../build/install/bin --log test/cavp.log --boxes - Get-Content test/cavp.log -Tail 5 - if: runner.os == 'Windows' - - name: Run test/file.py - run: | - python test/file.py --path ../build/install/bin --log test/file.log - Get-Content test/file.log -Tail 5 + cd ../build/cmake + ctest -C '${{ env.CONFIGURATION }}' --verbose if: runner.os == 'Windows' -- cgit v1.2.3