diff options
author | 2019-09-17 13:46:50 +0800 | |
---|---|---|
committer | 2019-09-17 05:57:44 +0000 | |
commit | 1571a7c1dbecc320d9e0c6014c845a1fe1abe377 (patch) | |
tree | afdeaf900a48af837a0c3aeeac49fa8314df8ea4 /veslibrary/ves_cpplibrary/src/Makefile | |
parent | 7966a4012c0eb263936e1b284801a79c5cb607a7 (diff) |
Contribute C++ implement of VES spec 7.0.1 to ONAP/vnfsdk:
Part5: test and code coverage
Issue-ID: VNFSDK-466
Signed-off-by: Yatian XU <yatian.xu@nokia-sbell.com>
Change-Id: Ia8188169188547b88ec586b68dbe5e42e7b28482
Diffstat (limited to 'veslibrary/ves_cpplibrary/src/Makefile')
-rw-r--r-- | veslibrary/ves_cpplibrary/src/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/veslibrary/ves_cpplibrary/src/Makefile b/veslibrary/ves_cpplibrary/src/Makefile deleted file mode 100644 index b0bc5eb..0000000 --- a/veslibrary/ves_cpplibrary/src/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -all: - mkdir build - cd build; cmake ..; make; make install - -.PHONY : test -test: - mkdir build - cd build; cmake .. -DENABLE_COVERAGE=ON; make; make install - mkdir test/build - cd test/build; cmake .. -DENABLE_COVERAGE=ON; make; ./xtest - lcov -c -d build/lib/encode/CMakeFiles/xencode.dir -d build/lib/transport/CMakeFiles/xtransport.dir -o coverage.info - lcov -r coverage.info '/usr/*' '*/transport/gen-cpp/*' -o xvesagent.info - genhtml xvesagent.info -o coverage - rm -rf *.info - -clean: - rm *.info -rf - rm build -rf - rm coverage -rf - rm test/build -rf |