~brianaker/gearmand/warning-usage

« back to all changes in this revision

Viewing changes to tests/stress.am

  • Committer: Brian Aker
  • Date: 2013-07-03 03:54:06 UTC
  • mto: This revision was merged to the branch mainline in revision 802.
  • Revision ID: brian@tangent.org-20130703035406-f68rhw65lw359fna
Update tests to all go into t (which makes using prove simpler).

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
# All paths should be given relative to the root
11
11
#
12
12
 
13
 
tests_stress_CFLAGS=
14
 
tests_stress_CXXFLAGS=
15
 
tests_stress_LDADD=
16
 
tests_stress_SOURCES=
17
 
 
18
 
tests_stress_SOURCES+= tests/burnin.cc
19
 
tests_stress_LDADD+= libgearman/libgearman.la
20
 
tests_stress_LDADD+= libtest/libtest.la
21
 
tests_stress_LDADD+= tests/libstartworker.la
22
 
check_PROGRAMS+=tests/stress
23
 
noinst_PROGRAMS+=tests/stress
24
 
 
25
 
test-stress: tests/stress gearmand/gearmand
26
 
        @tests/stress
27
 
 
28
 
valgrind-stress: tests/stress gearmand/gearmand
29
 
        @$(VALGRIND_COMMAND) tests/stress
30
 
 
31
 
gdb-stress: tests/stress gearmand/gearmand
32
 
        @$(GDB_COMMAND) tests/stress
 
13
t_stress_CFLAGS=
 
14
t_stress_CXXFLAGS=
 
15
t_stress_LDADD=
 
16
t_stress_SOURCES=
 
17
 
 
18
t_stress_SOURCES+= tests/burnin.cc
 
19
t_stress_LDADD+= libgearman/libgearman.la
 
20
t_stress_LDADD+= libtest/libtest.la
 
21
t_stress_LDADD+= tests/libstartworker.la
 
22
check_PROGRAMS+=t/stress
 
23
noinst_PROGRAMS+=t/stress
 
24
 
 
25
test-stress: t/stress gearmand/gearmand
 
26
        @t/stress
 
27
 
 
28
valgrind-stress: t/stress gearmand/gearmand
 
29
        @$(VALGRIND_COMMAND) t/stress
 
30
 
 
31
gdb-stress: t/stress gearmand/gearmand
 
32
        @$(GDB_COMMAND) t/stress