From cf3b635c03af2b7214b49db4cce6736e8a732334 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Tue, 27 May 2008 00:15:04 -0300 Subject: [PATCH] Add test to verify that the regression test is working. --- input/regression/test-output-distance.ly | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 input/regression/test-output-distance.ly diff --git a/input/regression/test-output-distance.ly b/input/regression/test-output-distance.ly new file mode 100644 index 0000000000..7962b2cbd1 --- /dev/null +++ b/input/regression/test-output-distance.ly @@ -0,0 +1,22 @@ + +\header { + texidoc = "This file gives a different result each time it is run, so +it should always show up in the output-distance testing. " + +} + +\version "2.11.46" + + +#(define time (gettimeofday)) +#(define random-number + (/ (random 100 (seed->random-state (+ (car time) + (cdr time)))) 100.0)) + +\layout { + line-width = #(* cm (+ 5 (* 10 random-number))) + ragged-right = ##f +} + +\relative { c4 d f8_\f[ g-.] } + -- 2.39.5