summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2025-04-15 10:38:41 -0400
committerTavian Barnes <tavianator@tavianator.com>2025-04-16 10:04:47 -0400
commit52e1a31d6513fe9179f756b61881b5f440d2972e (patch)
tree93fecf5ba433eebbdbb906ae94cb1825445ec0ae /Makefile
parent0885d1e2839bb5a74fcec2107c9d1f061cb9c4a9 (diff)
downloadbfs-52e1a31d6513fe9179f756b61881b5f440d2972e.tar.xz
tests/ptyx: New utility to run a command in a pty
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8a7b270..977974a 100644
--- a/Makefile
+++ b/Makefile
@@ -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