diff options
author | Leonid Lisovskiy | 2010-07-29 11:05:30 +0400 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2010-07-29 10:11:09 +0200 |
commit | 1538c975ec127efc368284abe0777006719bf505 (patch) | |
tree | c933052f1313c93246c5541064e8efc4aaa7bf40 /testsuite/testing.sh | |
parent | 64b6f7cfbafb66c0b9be08a30ec348579f17052a (diff) | |
download | busybox-1538c975ec127efc368284abe0777006719bf505.zip busybox-1538c975ec127efc368284abe0777006719bf505.tar.gz |
testsuite: typo in tr.tests
Hi
tr.tests script from bb 1.17 testsuite has wrong "optional"
conditional clauses. As result, some tr tests was skipped even if
CONFIG_FEATURE_TR_CLASSES=y. Patch attached fixes problem for me.
- Leonid
Signed-off-by: Leonid Lisovskiy <lly.dev@gmail.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'testsuite/testing.sh')
-rw-r--r-- | testsuite/testing.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/testing.sh b/testsuite/testing.sh index 913d7f8..f907dea 100644 --- a/testsuite/testing.sh +++ b/testsuite/testing.sh @@ -26,7 +26,7 @@ # number of failed tests. # The "optional" function is used to skip certain tests, ala: -# optional CONFIG_FEATURE_THINGY +# optional FEATURE_THINGY # # The "optional" function checks the environment variable "OPTIONFLAGS", # which is either empty (in which case it always clears SKIP) or |