1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-11-22 08:09:42 +02:00

- test/tsort: "Aborted" doesn't get reported on all platforms, so we just

remove it completely (reported by Nobuhiro Iwamatsu)



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5997 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner 2010-12-10 06:56:43 +00:00
parent 177fe9cc36
commit 0bfba12f3c

View File

@ -126,14 +126,12 @@ fped_fail "tsort: cycle" <<EOF
b a
}
EOF
expect_sed 's/Aborted.*/Aborted/' <<EOF
expect_sed '/Aborted/d' <<EOF
cycle detected in partial order
Aborted
EOF
# not entirely comfortable about the "Aborted (core dumped)". It's a system
# message (from the shell) that may get mangled. Also, since few people keep
# their cores these days, "(core dumped)" shouldn't really appear. Wonder why
# it does. strace agrees that __WCOREFLAG is set ...
# The "Aborted" can be reported with or without "(core dumped)", and sometimes
# not at all. So we just remove it. We already know that tsort has detected
# the problem.
###############################################################################