Commands of the form "set <something> <style>" are deprecated in favor of "set style <something>" in gunplot 4.0 and 4.2. In gunplot 4.4, the deprecated syntax is no longer supported.
Signed-off-by: Vinson Lee <[email protected]> --- client/tests/iozone/postprocessing.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/client/tests/iozone/postprocessing.py b/client/tests/iozone/postprocessing.py index d4ac99b..36786dc 100755 --- a/client/tests/iozone/postprocessing.py +++ b/client/tests/iozone/postprocessing.py @@ -431,7 +431,7 @@ class IOzonePlotter(object): commands += "set xlabel 'File size (KB)'\n" commands += "set ylabel 'Record size (KB)'\n" commands += "set zlabel 'Througput (KB/s)'\n" - commands += "set data style lines\n" + commands += "set style data lines\n" commands += "set dgrid3d 80,80, 3\n" commands += "set terminal png small size 900 700\n" commands += "set output '%s'\n" % os.path.join(self.output_dir, -- 1.7.5.4 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
