Test case confusion.
From: Mo DeJong <supermo_at_bayarea.net>
 
Date: 2001-12-07 13:54:46 CET 
Hi all.
 I have started to poke around in the test suite again and I am running into
 For one thing, why is there this sandbox() method in each .py test file?
 def sandbox(x):
 A call like:
 sbox = sandbox(basic_status)
 Will return a string like "basic_tests-0" which will be used to create a unique name
 The current implementation makes it hard to map from the directory names in
 Instead of:
   sbox = sandbox(basic_commit)
 We could just use:
   sbox = "basic_status"
 That would make it really easy to figure out which test a given repo and
 The other problem I am having has to do with running a single test from the
 check: $(TEST_DEPS) @FS_TEST_DEPS@
 So, I can run a single test case from the command line by doing this:
 make check TEST_PROGRAMS="" \
 As you can see, that is quite a bother. What if we made a small change
 % make check TESTS="subversion/tests/clients/cmdline/basic_tests.py"
 It could be implemented something like this (not a real patch)
 Index: Makefile.in
 cheers
 ---------------------------------------------------------------------
  | 
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.