Browse Source

initial commit

remotes/origin/production
Eric Bagus 11 months ago
commit
02e923970e
  1. 5
      .gitignore
  2. 0
      README.md
  3. 7
      build-project.sh
  4. 80
      project.yml
  5. 4
      src/main.c
  6. 3
      team.md
  7. 0
      test/.gitkeep

5
.gitignore

@ -0,0 +1,5 @@
*.out
.idea
CMakeLists.txt
cmake-build-debug
build

0
README.md

7
build-project.sh

@ -0,0 +1,7 @@
#!/bin/bash
if test -d build; then
rm -r build
fi
ceedling test:all
ceedling release
cp build/release/Calculator.out Calculator.out

80
project.yml

@ -0,0 +1,80 @@
:project:
:use_exceptions: FALSE
:use_test_preprocessor: TRUE
:use_auxiliary_dependencies: TRUE
:build_root: build
:release_build: TRUE
:test_file_prefix: test_
:which_ceedling: gem
:ceedling_version: 0.31.1
:default_tasks:
- test:all
:test_build:
:use_assembly: TRUE
:release_build:
:output: Calculator.out
:use_assembly: FALSE
:environment:
:extension:
:executable: .out
:paths:
:test:
- +:test/**
:source:
- src/**
:support:
:libraries: []
:defines:
:common: &common_defines []
:test:
- *common_defines
- TEST
- UNITY_INCLUDE_DOUBLE
:test_preprocess:
- *common_defines
- TEST
:cmock:
:mock_prefix: mock_
:when_no_prototypes: :warn
:enforce_strict_ordering: TRUE
:plugins:
- :ignore
- :callback
:treat_as:
uint8: HEX8
uint16: HEX16
uint32: UINT32
int8: INT8
bool: UINT8
:gcov:
:reports:
- HtmlDetailed
:gcovr:
:html_medium_threshold: 75
:html_high_threshold: 90
:libraries:
:placement: :end
:flag: "-l${1}"
:path_flag: "-L ${1}"
:system:
- 'm' # for example, you might list 'm' to grab the math library
:test: []
:release: []
:plugins:
:load_paths:
- "#{Ceedling.load_path}"
:enabled:
- stdout_pretty_tests_report
- xml_tests_report
- module_generator
...

4
src/main.c

@ -0,0 +1,4 @@
#include <stdio.h>
int main() {
}

3
team.md

@ -0,0 +1,3 @@
- Eric Bagus, fdai7812
- Leon Wolf, fdai7845
- Sandro Welte, fdai7728

0
test/.gitkeep

Loading…
Cancel
Save