Changeset 8db09e4 in mainline
- Timestamp:
- 2014-06-13T11:13:27Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 15d0046
- Parents:
- 134ac5d
- Location:
- uspace/lib/pcut
- Files:
-
- 8 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/pcut/README.rst
r134ac5d r8db09e4 65 65 ----------------------- 66 66 67 On Unix systems, running ``make`` and ``make install`` shall do the job. 67 PCUT uses CMake (http://www.cmake.org/). 68 On Unix systems, following commands build the library and execute the 69 built-in tests:: 70 71 mkdir build 72 cd build 73 cmake .. && make all test 68 74 69 75 More details can be found on https://github.com/vhotspur/pcut/wiki/Building. -
uspace/lib/pcut/helenos.mak
r134ac5d r8db09e4 27 27 # 28 28 29 PCUT_TARGET_SOURCES = src/os/helenos.c 30 31 -include base.mak 32 33 SOURCES = $(PCUT_SOURCES) 29 SOURCES = \ 30 src/os/helenos.c \ 31 src/assert.c \ 32 src/list.c \ 33 src/main.c \ 34 src/print.c \ 35 src/report/report.c \ 36 src/report/tap.c \ 37 src/report/xml.c \ 38 src/run.c 34 39 EXTRA_CFLAGS = -D__helenos__ -Iinclude 35 40 LIBRARY = libpcut -
uspace/lib/pcut/update-from-master.sh
r134ac5d r8db09e4 44 44 45 45 $RUN find -not -name update-from-master.sh -delete 46 $RUN wget https://github.com/vhotspur/pcut/archive/master.zip -O pcut-master.zip47 $RUN unzip - u pcut-master.zip46 $RUN wget -q https://github.com/vhotspur/pcut/archive/master.zip -O pcut-master.zip 47 $RUN unzip -q -u pcut-master.zip 48 48 $RUN mv -f pcut-master/* . 49 49 $RUN rm -rf pcut-master pcut-master.zip 50 $RUN rm -rf contrib doc 51 $RUN rm -f CMakeLists.txt *.cmake run_test.sh 50 52 51 53 cat >Makefile <<'EOF_MAKEFILE'
Note:
See TracChangeset
for help on using the changeset viewer.