summary refs log tree commit diff stats
path: root/tests/osproc
Commit message (Expand)AuthorAgeFilesLines
* fix #13449 texitcode flaky on windows (#13487)Timothee Cour2020-02-251-1/+4
* make tests green againAraq2018-12-111-0/+2
* lots of small changesArne Döring2018-12-113-7/+13
* require errormsg to be specified before file.Arne Döring2018-12-114-4/+0
* more tests fixedArne Döring2018-11-231-0/+4
* activated more tests, allow input in test specArne Döring2018-11-233-0/+16
* merged #8624 manually; fixes #8442; closes #8575Araq2018-08-311-0/+32
* Haiku support for Nim (#8542)alaviss2018-08-142-1/+6
* osproc: fix double close on POSIX (#5724)Michał Zieliński2018-04-161-0/+24
* Fixes #5281 (#7489)Dmitry Atamanov2018-04-061-6/+5
* Refactored version of execProcesses with test.cheatfate2017-11-281-0/+32
* Introduce first class support for Android (#5772)Fredrik Høisæther Rasch2017-08-061-1/+5
* WIFSIGNALED means process has exited too (with a bang!) (#5678)Jacek Sieka2017-04-271-0/+36
* Bugfix/double newlines in stderr (#5426)Fabian Keller2017-02-245-4/+51
* make sure first call to running() after process exit returns falseJohannes Hofmann2016-12-031-0/+5
* One more attempt to fix #4867cheatfate2016-10-211-0/+16
* rename tfalse.nim to tafalse.nimJohannes Hofmann2016-09-303-7/+8
* add testcase for exit code handlingJohannes Hofmann2016-09-302-0/+20
* Fix passing environment in startProcess (win)Dmitry Polienko2016-07-181-0/+32
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-1/+1
* Clean up tests/osprocdef2015-02-041-3/+6
* Add osproc stdin test.Dominik Picheta2014-06-152-0/+19
dwm @echo finished options: @echo dwm build options: @echo "LIBS = ${LIBS}" @echo "CFLAGS = ${CFLAGS}" @echo "LDFLAGS = ${LDFLAGS}" @echo "CC = ${CC}" .c.o: @echo CC $< @${CC} -c ${CFLAGS} $< ${OBJ}: dwm.h dwm: ${OBJ} @echo LD $@ @${CC} -o $@ ${OBJ} ${LDFLAGS} clean: rm -f dwm *.o core dwm-${VERSION}.tar.gz dist: clean mkdir -p dwm-${VERSION} cp -R Makefile README LICENSE config.mk *.h *.c ${MAN1} dwm-${VERSION} tar -cf dwm-${VERSION}.tar dwm-${VERSION} gzip dwm-${VERSION}.tar rm -rf dwm-${VERSION} install: all @mkdir -p ${DESTDIR}${PREFIX}/bin @cp -f ${BIN} ${DESTDIR}${PREFIX}/bin @for i in ${BIN}; do \ chmod 755 ${DESTDIR}${PREFIX}/bin/`basename $$i`; \ done @echo installed executable files to ${DESTDIR}${PREFIX}/bin @mkdir -p ${DESTDIR}${MANPREFIX}/man1 @cp -f ${MAN1} ${DESTDIR}${MANPREFIX}/man1 @for i in ${MAN1}; do \ chmod 444 ${DESTDIR}${MANPREFIX}/man1/`basename $$i`; \ done @echo installed manual pages to ${DESTDIR}${MANPREFIX}/man1 uninstall: for i in ${BIN}; do \ rm -f ${DESTDIR}${PREFIX}/bin/`basename $$i`; \ done for i in ${MAN1}; do \ rm -f ${DESTDIR}${MANPREFIX}/man1/`basename $$i`; \ done