diff mbox

[09/12] ltp-testsuite: depends on MMU

Message ID 1410537011-29662-10-git-send-email-jezz@sysmic.org
State Accepted
Headers show

Commit Message

Jérôme Pouiller Sept. 12, 2014, 3:50 p.m. UTC
Fixes http://sysmic.org/~jezz/results/dfc51d2b:

.../ltp-testsuite-20140115/lib/tests/tst_checkpoint_child.c:40: undefined reference to `_fork'
collect2: ld returned 1 exit status
make[3]: *** [tst_checkpoint_child] Error 1
make[3]: *** Waiting for unfinished jobs....
/tmp/ccF9CQQa.o: In function `main':
.../ltp-testsuite-20140115/lib/tests/tst_checkpoint_parent.c:40: undefined reference to `_fork'
collect2: ld returned 1 exit status
make[3]: *** [tst_checkpoint_parent] Error 1
/tmp/ccwCGpYd.o: In function `main':
.../ltp-testsuite-20140115/lib/tests/tst_checkpoint_parent_exits.c:40: undefined reference to `_fork'
collect2: ld returned 1 exit status
make[3]: *** [tst_checkpoint_parent_exits] Error 1
/tmp/cc8TiB6d.o: In function `main':
.../ltp-testsuite-20140115/lib/tests/tst_process_state.c:43: undefined reference to `_fork'
collect2: ld returned 1 exit status
make[3]: *** [tst_process_state] Error 1
/tmp/ccrf7Gjb.o: In function `main':
.../ltp-testsuite-20140115/lib/tests/tst_checkpoint_child_exits.c:40: undefined reference to `_fork'
collect2: ld returned 1 exit status

Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
---
 package/ltp-testsuite/Config.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Comments

Peter Korsgaard Sept. 12, 2014, 9:20 p.m. UTC | #1
>>>>> "Jérôme" == Jérôme Pouiller <jezz@sysmic.org> writes:

 > Fixes http://sysmic.org/~jezz/results/dfc51d2b:
 > .../ltp-testsuite-20140115/lib/tests/tst_checkpoint_child.c:40: undefined reference to `_fork'
 > collect2: ld returned 1 exit status
 > make[3]: *** [tst_checkpoint_child] Error 1
 > make[3]: *** Waiting for unfinished jobs....
 > /tmp/ccF9CQQa.o: In function `main':
 > .../ltp-testsuite-20140115/lib/tests/tst_checkpoint_parent.c:40: undefined reference to `_fork'
 > collect2: ld returned 1 exit status
 > make[3]: *** [tst_checkpoint_parent] Error 1
 > /tmp/ccwCGpYd.o: In function `main':
 > .../ltp-testsuite-20140115/lib/tests/tst_checkpoint_parent_exits.c:40: undefined reference to `_fork'
 > collect2: ld returned 1 exit status
 > make[3]: *** [tst_checkpoint_parent_exits] Error 1
 > /tmp/cc8TiB6d.o: In function `main':
 > .../ltp-testsuite-20140115/lib/tests/tst_process_state.c:43: undefined reference to `_fork'
 > collect2: ld returned 1 exit status
 > make[3]: *** [tst_process_state] Error 1
 > /tmp/ccrf7Gjb.o: In function `main':
 > .../ltp-testsuite-20140115/lib/tests/tst_checkpoint_child_exits.c:40: undefined reference to `_fork'
 > collect2: ld returned 1 exit status

 > Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
 > ---
 >  package/ltp-testsuite/Config.in | 5 +++--
 >  1 file changed, 3 insertions(+), 2 deletions(-)

 > diff --git a/package/ltp-testsuite/Config.in b/package/ltp-testsuite/Config.in
 > index 0e71677..76fa1a1 100644
 > --- a/package/ltp-testsuite/Config.in
 > +++ b/package/ltp-testsuite/Config.in
 > @@ -4,6 +4,7 @@ comment "ltp-testsuite needs specific uClibc options, see help"
 
 >  config BR2_PACKAGE_LTP_TESTSUITE
 >  	bool "ltp-testsuite"
 > +	depends on BR2_USE_MMU # fork()
 >  	depends on BR2_TOOLCHAIN_HAS_THREADS
 >  	depends on BR2_INET_IPV6
 >  	depends on BR2_LARGEFILE
 > @@ -22,7 +23,7 @@ config BR2_PACKAGE_LTP_TESTSUITE
 
 >  	  http://ltp.sourceforge.net/
 
 > -comment "ltp-testsuite needs a toolchain w/ IPv6, RPC, largefile, threads"
 > +comment "ltp-testsuite needs a toolchain w/ IPv6, RPC, largefile, threads, MMU"
 >  	depends on !BR2_nios2
 >  	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INET_IPV6 || \
 > -		!BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_NATIVE_RPC
 > +		!BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_NATIVE_RPC || !BR2_USE_MMU

Same comment as for xfsprogs. Committed with that fixed, thanks.
diff mbox

Patch

diff --git a/package/ltp-testsuite/Config.in b/package/ltp-testsuite/Config.in
index 0e71677..76fa1a1 100644
--- a/package/ltp-testsuite/Config.in
+++ b/package/ltp-testsuite/Config.in
@@ -4,6 +4,7 @@  comment "ltp-testsuite needs specific uClibc options, see help"
 
 config BR2_PACKAGE_LTP_TESTSUITE
 	bool "ltp-testsuite"
+	depends on BR2_USE_MMU # fork()
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	depends on BR2_INET_IPV6
 	depends on BR2_LARGEFILE
@@ -22,7 +23,7 @@  config BR2_PACKAGE_LTP_TESTSUITE
 
 	  http://ltp.sourceforge.net/
 
-comment "ltp-testsuite needs a toolchain w/ IPv6, RPC, largefile, threads"
+comment "ltp-testsuite needs a toolchain w/ IPv6, RPC, largefile, threads, MMU"
 	depends on !BR2_nios2
 	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INET_IPV6 || \
-		!BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_NATIVE_RPC
+		!BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_NATIVE_RPC || !BR2_USE_MMU