Changeset 8db09e4 in mainline


Ignore:
Timestamp:
2014-06-13T11:13:27Z (10 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
15d0046
Parents:
134ac5d
Message:

Update PCUT to newest version

Location:
uspace/lib/pcut
Files:
8 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/pcut/README.rst

    r134ac5d r8db09e4  
    6565-----------------------
    6666
    67 On Unix systems, running ``make`` and ``make install`` shall do the job.
     67PCUT uses CMake (http://www.cmake.org/).
     68On Unix systems, following commands build the library and execute the
     69built-in tests::
     70
     71        mkdir build
     72        cd build
     73        cmake .. && make all test
    6874
    6975More details can be found on https://github.com/vhotspur/pcut/wiki/Building.
  • uspace/lib/pcut/helenos.mak

    r134ac5d r8db09e4  
    2727#
    2828
    29 PCUT_TARGET_SOURCES = src/os/helenos.c
    30 
    31 -include base.mak
    32 
    33 SOURCES = $(PCUT_SOURCES)
     29SOURCES = \
     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
    3439EXTRA_CFLAGS = -D__helenos__ -Iinclude
    3540LIBRARY = libpcut
  • uspace/lib/pcut/update-from-master.sh

    r134ac5d r8db09e4  
    4444
    4545$RUN find -not -name update-from-master.sh -delete
    46 $RUN wget https://github.com/vhotspur/pcut/archive/master.zip -O pcut-master.zip
    47 $RUN unzip -u pcut-master.zip
     46$RUN wget -q https://github.com/vhotspur/pcut/archive/master.zip -O pcut-master.zip
     47$RUN unzip -q -u pcut-master.zip
    4848$RUN mv -f pcut-master/* .
    4949$RUN rm -rf pcut-master pcut-master.zip
     50$RUN rm -rf contrib doc
     51$RUN rm -f CMakeLists.txt *.cmake run_test.sh
    5052
    5153cat >Makefile <<'EOF_MAKEFILE'
Note: See TracChangeset for help on using the changeset viewer.