mirror of
https://github.com/meekrosoft/fff
synced 2026-01-23 08:25:59 +01:00
commit e5a5749971eb9274679699020a54c91d4053ed79 Author: James Fraser <wulfgar.pro@gmail.com> Date: Sun Feb 3 19:57:31 2019 +1100 PR #47: Minor review fixes to tests files. commit e9f11b9ec8de8f8d1f0de7b6959c575e15894526 Author: James Fraser <wulfgar.pro@gmail.com> Date: Sun Feb 3 19:57:04 2019 +1100 PR #47: Minor review fixes. commit0a7fbeceecAuthor: Pauli Salmenrinne <pauli.salmenrinne@pexraytech.com> Date: Tue Jan 22 15:11:10 2019 +0200 Add example for the weak linking commit647737304dAuthor: susundberg <susundberg@gmail.com> Date: Wed Mar 21 13:14:05 2018 +0200 Add "FFF_FUNCTION_ATTRIBUTES" definition that can be used to declare attributes for functions. More specifically, allow __weak__ attribute.
21 lines
588 B
Bash
Executable File
21 lines
588 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cat LICENSE > fff.h
|
|
echo >> fff.h
|
|
ruby fakegen.rb >> fff.h
|
|
make clean
|
|
make all
|
|
build/fff_test_c
|
|
build/fff_test_cpp --gtest_output=xml:build/test_results.xml
|
|
build/ui_test_ansic
|
|
build/ui_test_cpp --gtest_output=xml:build/example_results.xml
|
|
build/fff_test_glob_c
|
|
build/fff_test_glob_cpp --gtest_output=xml:build/test_global_results.xml
|
|
build/driver_testing --gtest_output=xml:build/driver_testing.xml
|
|
build/driver_testing_fff --gtest_output=xml:build/driver_testing_fff.xml
|
|
build/weak_linking/test_display
|
|
build/weak_linking/test_sensor
|
|
build/weak_linking/test_main
|
|
|