• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
2colour: true
3:unity:
4  :plugins: []
5:tools:
6  :test_compiler:
7    :name: compiler
8    :executable: clang
9    :arguments:
10    - "-c"
11    - "-Wall"
12    - "-Wextra"
13    - "-Werror"
14    - "-Wcast-qual"
15    - "-Wconversion"
16    - "-Wdisabled-optimization"
17    - "-Wformat=2"
18    - "-Winit-self"
19    - "-Winline"
20    - "-Winvalid-pch"
21    - "-Wmissing-include-dirs"
22    - "-Wnonnull"
23    - "-Wpacked"
24    - "-Wpointer-arith"
25    - "-Wswitch-default"
26    - "-Wstrict-aliasing"
27    - "-Wstrict-overflow=5"
28    - "-Wuninitialized"
29    - "-Wunused"
30    - "-Wreturn-type"
31    - "-Wshadow"
32    - "-Wundef"
33    - "-Wwrite-strings"
34    - "-Wno-nested-externs"
35    - "-Wno-unused-parameter"
36    - "-Wno-variadic-macros"
37    - "-Wbad-function-cast"
38    - "-fms-extensions"
39    - "-fno-omit-frame-pointer"
40    - "-fno-common"
41    - "-fstrict-aliasing"
42    - "-std=gnu99"
43    - "-pedantic"
44    - "-O0"
45    - '-I"$": COLLECTION_PATHS_TEST_TOOLCHAIN_INCLUDE'
46    - '-I"$": COLLECTION_PATHS_TEST_SUPPORT_SOURCE_INCLUDE_VENDOR'
47    - "-D$: COLLECTION_DEFINES_TEST_AND_VENDOR"
48    - "${1}"
49    - "-o ${2}"
50  :test_linker:
51    :name: linker
52    :executable: clang
53    :arguments:
54    - "${1}"
55    - "-lm"
56    - "-m64"
57    - "-o ${2}"
58:extension:
59  :object: ".o"
60  :executable: ".exe"
61:paths:
62  :test:
63    - src/
64    - "../src/"
65    - testdata/
66    - tests/
67:defines:
68  :test:
69  - UNITY_INCLUDE_DOUBLE
70  - UNITY_SUPPORT_TEST_CASES
71  - UNITY_SUPPORT_64
72  - UNITY_COMPARE_PTRS_ON_ZERO_ARRAY
73