Andy1978

Joined 8 January 2013
755 bytes added ,  4 September 2014
No edit summary
Line 191: Line 191:
Datum:          Tue Apr 23 12:57:16 2013 -0400
Datum:          Tue Apr 23 12:57:16 2013 -0400
Zusammenfassung: allow double-click in file browser to load data files</pre>
Zusammenfassung: allow double-click in file browser to load data files</pre>
=== bisect bug 42612 ===
For bug #42612 I created a minimal script which fails: clf_fails_42612.m
subplot (2,1,1);
plot (1:5);
legend ('hello', 'location', 'northwestoutside');
clf
And the script which runs it, bisect_clf.sh:
#!/bin/bash
SRCDIR=~/src/octave-untouched-src
BUILDDIR=~/src/bisect_build
cd $BUILDDIR
## Try a simple build first
if  ! make -j 6
then
  # make failed, run bootstrap and configure
  cd $SRCDIR
  ./bootstrap || exit 127
  cd $BUILDDIR
  $SRCDIR/configure FFLAGS=-g CFLAGS=-g CXXFLAGS=-g --enable-bounds-check --disable-java --disable-gui --disable-docs|| exit 127
  make -j 7|| exit 127
fi
cd $SRCDIR
$BUILDDIR/run-octave -q clf_fails_42612.m
ret=$?
echo $(hg id) $ret >> clf_fails_42612.log
exit $ret


== octave-image-acquisition on forge ==
== octave-image-acquisition on forge ==
219

edits