~ubuntu-branches/debian/lenny/elfutils/lenny

« back to all changes in this revision

Viewing changes to debian/patches/native-pid.diff

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx, Christian Aichinger
  • Date: 2006-08-27 15:48:23 UTC
  • Revision ID: james.westby@ubuntu.com-20060827154823-gmbm698yux21k7fs
Tags: 0.123-2
[ Kurt Roeckx ]
* Add backend support for alpha: adding the registers.
* Add backend support for arm: adding regs and retval.
  Thanks to Eugeniy Meshcheryakov <eugeniy.meshcheryakov@googlemail.com>
* Add backend support for hppa, thanks to
  Eugeniy Meshcheryakov <eugeniy.meshcheryakov@googlemail.com>
* Add some missing ELFOSABI_* and EM_* to elf.h

[ Christian Aichinger ]
* Fix sparc backend retval
* Add mips backend.
* Rewrite the static backend so making changes to the backends
  is easier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Index: elfutils-0.122/tests/run-native-test.sh
 
2
===================================================================
 
3
--- elfutils-0.122.orig/tests/run-native-test.sh        2006-08-13 16:42:30.000000000 +0000
 
4
+++ elfutils-0.122/tests/run-native-test.sh     2006-08-13 16:42:49.000000000 +0000
 
5
@@ -57,8 +57,9 @@
 
6
 
 
7
 for cc in "$HOSTCC" "$HOST_CC" cc gcc "$CC"; do
 
8
   test "x$cc" != x || continue
 
9
-  $cc -o native -g native.c > /dev/null 2>&1 &&
 
10
-  ./native > /dev/null 2>&1 & native=$! &&
 
11
+  $cc -o native -g native.c > /dev/null 2>&1
 
12
+  ./native > /dev/null 2>&1 &
 
13
+  native=$! &&
 
14
   sleep 1 && kill -0 $native 2> /dev/null &&
 
15
   break ||
 
16
   native=0