aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authormarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-02 19:15:01 +0000
committermarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-02 19:15:01 +0000
commit2e09ab5e6612616b2d5a9def00b72548daefe70f (patch)
tree87ec8b192cc1957e9605308fa73896438ec68df5 /docs
parent5cac095ee6d2a4e5fc26c43c57c0f2ea07d125a6 (diff)
downloadbusybox-w32-2e09ab5e6612616b2d5a9def00b72548daefe70f.tar.gz
busybox-w32-2e09ab5e6612616b2d5a9def00b72548daefe70f.tar.bz2
busybox-w32-2e09ab5e6612616b2d5a9def00b72548daefe70f.zip
Removed section on testing that is now in contributing.txt.
git-svn-id: svn://busybox.net/trunk/busybox@1956 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'docs')
-rw-r--r--docs/style-guide.txt20
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/style-guide.txt b/docs/style-guide.txt
index ddf3ebb83..1f06662ac 100644
--- a/docs/style-guide.txt
+++ b/docs/style-guide.txt
@@ -607,23 +607,3 @@ illustrates emphasizing logical blocks:
607 /* clean up */ 607 /* clean up */
608 free(line); 608 free(line);
609 } 609 }
610
611
612Testing Guidelines
613~~~~~~~~~~~~~~~~~~
614
615It's considered good form to test your new feature before you submit a patch
616to the mailing list, and especially before you commit a change to CVS. Here
617are some guidelines on testing your changes.
618
619 - Always test busybox applets against GNU counterparts and make sure the
620 behavior / output is identical between the two.
621
622 - Try several different permutations and combinations of the features you're
623 adding and make sure they all work. (Make sure one feature does not
624 interfere with another, etc.)
625
626 - Make sure you test compiling against the source both with the feature
627 turned on and turned off in Config.h and make sure busybox compiles cleanly
628 both ways.
629