shlist

share and manage lists between multiple people
Log | Files | Refs

commit 6d80ec635bd0f45aa289b10280e9aedf96f0667b
parent d2802a486822805f5025095b5855bfc50885db93
Author: kyle <kyle@0x30.net>
Date:   Wed,  9 Dec 2015 23:57:21 -0700

run_tests: run sl in taint mode

- taint mode will help us catch programming errors
- it tracks variables and warns when they're used in an unsafe way
  - eg passing foreign network traffic to system()

Diffstat:
Mrun_tests.sh | 2+-
Msl | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/run_tests.sh b/run_tests.sh @@ -28,7 +28,7 @@ for t in `ls tests/*/Makefile`; do export TEST_DIR="$test_dir" make -s -C $test_dir clean - perl sl -p $PORT -t > $test_dir/server.log & + perl -T sl -p $PORT -t > $test_dir/server.log & server_pid=$! # run test, complain if it failed diff --git a/sl b/sl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/perl -I. use warnings; use strict;