Commit 060d7bc1 by Zack Weinberg

Give test a better name, add some glue for the test harness

From-SVN: r31749
parent 7ce86678
// Build don't link:
// crash test - XFAIL *-*-*
// Copyright (c) 2000 Free Software Foundation.
// Distilled from a bug report by Eric Ford <eford@princeton.edu>
extern double *y;
extern double *x;
......@@ -8,5 +12,5 @@ void SetInitCond(void)
{
int i;
for(i = 2; i < nPoints; ++i)
y[i] = y[nPoints] .* (x[i]-x[1]) / (x[nPoints]-x[1]);
y[i] = y[nPoints] .* (x[i]-x[1]) / (x[nPoints]-x[1]); // ERROR
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment