citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit ba7311951d8e93916c1b134d16efa5c3bab7499a
parent beeff3e3140ac03afc9617706e02eba9fdf1787b
Author: Kyle Milz <kyle@0x30.net>
Date:   Sun, 18 Dec 2016 17:01:17 -0700

t: rename shm.pm to utils.pm

Diffstat:
Mt/lib_exectotals.t | 2+-
Mt/lib_header.t | 2+-
Mt/lib_size.t | 2+-
Mt/lib_transunit.t | 2+-
Rt/shm.pm -> t/utils.pm | 0
5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/t/lib_exectotals.t b/t/lib_exectotals.t @@ -5,7 +5,7 @@ use strict; use warnings; use Test::More tests => 26; use Time::HiRes qw( time usleep ); -use t::shm; +use t::utils; my $tmp_dir = t::tmpdir->new(); diff --git a/t/lib_header.t b/t/lib_header.t @@ -4,7 +4,7 @@ use strict; use warnings; use Test::More tests => 16; -use t::shm; +use t::utils; my $tmp_dir = t::tmpdir->new(); diff --git a/t/lib_size.t b/t/lib_size.t @@ -5,7 +5,7 @@ use strict; use warnings; use POSIX; use Test::More tests => 3; -use t::shm; +use t::utils; my $tmp_dir = t::tmpdir->new(); diff --git a/t/lib_transunit.t b/t/lib_transunit.t @@ -4,7 +4,7 @@ use strict; use warnings; use Test::More tests => 8; -use t::shm; +use t::utils; my $tmp_dir = t::tmpdir->new(); diff --git a/t/shm.pm b/t/utils.pm