diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-04-15 10:38:41 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-04-16 10:04:47 -0400 |
commit | 52e1a31d6513fe9179f756b61881b5f440d2972e (patch) | |
tree | 93fecf5ba433eebbdbb906ae94cb1825445ec0ae /Makefile | |
parent | 0885d1e2839bb5a74fcec2107c9d1f061cb9c4a9 (diff) | |
download | bfs-52e1a31d6513fe9179f756b61881b5f440d2972e.tar.xz |
tests/ptyx: New utility to run a command in a pty
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -43,6 +43,7 @@ bfs: bin/bfs BINS := \ bin/bfs \ bin/tests/mksock \ + bin/tests/ptyx \ bin/tests/units \ bin/tests/xspawnee \ bin/tests/xtouch \ @@ -119,6 +120,7 @@ UTEST_BINS := \ # Integration test binaries ITEST_BINS := \ bin/tests/mksock \ + bin/tests/ptyx \ bin/tests/xtouch # Build (but don't run) test binaries @@ -179,6 +181,9 @@ integration-tests: ${INTEGRATION_TESTS} bin/tests/mksock: obj/tests/mksock.o ${LIBBFS} OBJS += obj/tests/mksock.o +bin/tests/ptyx: obj/tests/ptyx.o ${LIBBFS} +OBJS += obj/tests/ptyx.o + bin/tests/xtouch: obj/tests/xtouch.o ${LIBBFS} OBJS += obj/tests/xtouch.o |