clean up docker container tests

This commit is contained in:
abeimler 2023-07-20 14:04:10 +02:00
parent 9af05511cb
commit 7f57dc837b
3 changed files with 13 additions and 45 deletions

View File

@ -1,18 +1,6 @@
schemaVersion: 2.0.0 schemaVersion: 2.0.0
commandTests: commandTests:
- name: gcc compiler
command: gcc
args: ["--version"]
expectedOutput: [".*gcc.*GCC.*"]
- name: g++ compiler
command: g++
args: ["--version"]
expectedOutput: [".*g\\+\\+.*GCC.*"]
- name: make
command: make
args: ["--version"]
expectedOutput: [".*GNU Make.*"]
- name: ninja - name: ninja
command: /root/ninja/ninja command: /root/ninja/ninja
args: ["--version"] args: ["--version"]
@ -29,6 +17,10 @@ commandTests:
command: doxygen command: doxygen
args: ["--version"] args: ["--version"]
expectedOutput: [".*1.*"] expectedOutput: [".*1.*"]
- name: clang
command: /usr/lib/llvm-15/bin/clang
args: ["--version"]
expectedOutput: [".*clang.*"]
fileExistenceTests: fileExistenceTests:
- name: "vcpkg" - name: "vcpkg"

View File

@ -1,18 +1,6 @@
schemaVersion: 2.0.0 schemaVersion: 2.0.0
commandTests: commandTests:
- name: gcc compiler
command: gcc
args: ["--version"]
expectedOutput: [".*gcc.*GCC.*"]
- name: g++ compiler
command: g++
args: ["--version"]
expectedOutput: [".*g\\+\\+.*GCC.*"]
- name: make
command: make
args: ["--version"]
expectedOutput: [".*GNU Make.*"]
- name: ninja - name: ninja
command: /root/ninja/ninja command: /root/ninja/ninja
args: ["--version"] args: ["--version"]
@ -29,6 +17,10 @@ commandTests:
command: doxygen command: doxygen
args: ["--version"] args: ["--version"]
expectedOutput: [".*1.*"] expectedOutput: [".*1.*"]
- name: clang
command: /usr/lib/llvm-15/bin/clang
args: ["--version"]
expectedOutput: [".*clang.*"]
fileExistenceTests: fileExistenceTests:
- name: "vcpkg" - name: "vcpkg"

View File

@ -1,46 +1,30 @@
schemaVersion: 2.0.0 schemaVersion: 2.0.0
commandTests: commandTests:
- name: gcc compiler
command: gcc
args: ["--version"]
expectedOutput: [".*gcc.*"]
- name: g++ compiler
command: g++
args: ["--version"]
expectedOutput: [".*g\\+\\+.*"]
- name: make
command: make
args: ["--version"]
expectedOutput: [".*GNU Make.*"]
- name: ninja - name: ninja
command: /root/ninja/ninja command: /root/ninja/ninja
args: ["--version"] args: ["--version"]
expectedOutput: [".*1.*"] expectedOutput: [".*1.*"]
- name: gcovr - name: gcovr
command: gcovr command: /usr/local/bin/gcovr
args: ["--version"] args: ["--version"]
expectedOutput: [".*gcovr.*"] expectedOutput: [".*gcovr.*"]
- name: ccache - name: ccache
command: ccache command: /usr/bin/ccache
args: ["--version"] args: ["--version"]
expectedOutput: [".*ccache.*"] expectedOutput: [".*ccache.*"]
- name: doxygen - name: doxygen
command: doxygen command: /usr/bin/doxygen
args: ["--version"] args: ["--version"]
expectedOutput: [".*1.*"] expectedOutput: [".*1.*"]
- name: cppcheck - name: cppcheck
command: cppcheck command: /usr/bin/cppcheck
args: ["--version"] args: ["--version"]
expectedOutput: [".*Cppcheck.*"] expectedOutput: [".*Cppcheck.*"]
- name: clang - name: clang
command: /root/llvm/bin/clang command: /usr/lib/llvm-15/bin/clang
args: ["--version"] args: ["--version"]
expectedOutput: [".*clang.*"] expectedOutput: [".*clang.*"]
- name: node
command: node
args: ["-v"]
expectedOutput: [".*v12.*"]
fileExistenceTests: fileExistenceTests:
- name: "vcpkg" - name: "vcpkg"