summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/flex/files
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/flex/files')
-rw-r--r--meta/recipes-devtools/flex/files/do_not_create_pdf_doc.patch17
-rwxr-xr-xmeta/recipes-devtools/flex/files/run-ptest29
2 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-devtools/flex/files/do_not_create_pdf_doc.patch b/meta/recipes-devtools/flex/files/do_not_create_pdf_doc.patch
new file mode 100644
index 0000000000..02ececb0b4
--- /dev/null
+++ b/meta/recipes-devtools/flex/files/do_not_create_pdf_doc.patch
@@ -0,0 +1,17 @@
1Upstream-Status: Inapropriate (embedded specific)
2
3Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
4
5Index: flex-2.5.37/doc/Makefile.am
6===================================================================
7--- flex-2.5.37.orig/doc/Makefile.am 2012-07-21 04:18:27.000000000 +0300
8+++ flex-2.5.37/doc/Makefile.am 2013-07-30 17:57:09.834834531 +0300
9@@ -2,7 +2,7 @@
10
11 info_TEXINFOS = flex.texi
12 dist_man_MANS = flex.1
13-dist_doc_DATA= flex.pdf
14+EXTRA_DIST= flex.pdf
15
16 CLEANFILES = \
17 flex.hks \
diff --git a/meta/recipes-devtools/flex/files/run-ptest b/meta/recipes-devtools/flex/files/run-ptest
new file mode 100755
index 0000000000..bffba16f70
--- /dev/null
+++ b/meta/recipes-devtools/flex/files/run-ptest
@@ -0,0 +1,29 @@
1#!/bin/sh
2
3test1="test-alloc-extra test-array-nr test-array-r test-basic-nr test-basic-r test-extended test-quotes \
4test-bison-nr test-bison-yylloc test-bison-yylval test-c++-basic test-c-cpp-nr test-prefix-nr test-ccl \
5test-c-cpp-r test-c++-multiple-scanners test-mem-r test-mem-nr test-debug-nr test-linedir-r test-noansi-r \
6test-yyextra test-header-r test-noansi-nr test-debug-r TEMPLATE test-top test-header-nr test-prefix-r"
7test2="test-multiple-scanners-nr test-posixly-correct test-posix test-string-r test-string-nr"
8test3="test-pthread test-include-by-push test-include-by-buffer test-include-by-reentrant"
9test4="test-lineno-nr test-lineno-r test-lineno-trailing"
10test5="test-c++-yywrap test-rescan-r test-rescan-nr"
11test6="test-reject-nr test-reject-r"
12test7="test-reject-ser test-reject-ver"
13test8="test-multiple-scanners-r"
14
15output() {
16 if [ $? -eq 0 ]; \
17 then echo "PASS: $i"; \
18 else echo "FAIL: $i"; \
19 fi;
20}
21
22for i in $test1; do $i/$i < $i/test.input >/dev/null; output; done
23for i in $test2; do $i/$i >/dev/null; output; done
24for i in $test3; do cd $i; ./$i test-1.input >/dev/null; output; cd ..; done
25for i in $test4; do test `$i/$i < $i/test.input` -eq `$i/$i 1 < $i/test.input` >/dev/null; output; done
26for i in $test5; do $i/$i $i/test.input >/dev/null; output; done
27for i in $test6; do test-reject/$i < test-reject/test.input >/dev/null; output; done
28for i in $test7; do test-reject/$i test-reject/$i.tables < test-reject/test.input >/dev/null; output; done
29cd $test8; ./$test8 >/dev/null; i=$test8 output