All of lore.kernel.org
 help / color / mirror / Atom feed
* [Fuego] [PATCH] IOzone: remove single quotation
@ 2021-06-22  1:23 daichi1.fukui
  2021-06-22 22:34 ` Tim.Bird
  0 siblings, 1 reply; 3+ messages in thread
From: daichi1.fukui @ 2021-06-22  1:23 UTC (permalink / raw)
  To: fuego

[-- Attachment #1: Type: text/plain, Size: 2384 bytes --]

From 48bac4939a46eac4a5d31856a734c14fa19ef0fe Mon Sep 17 00:00:00 2001

From: Daichi Fukui <daichi1.fukui@toshiba.co.jp>

Date: Mon, 21 Jun 2021 18:54:19 +0900

Subject: [PATCH] IOzone: remove single quotation



With single quotations in TESTS variables, the specified

tests (-i) are not passed correctly to the iozone command,

ending up with testing only write/re-writes in giving

a prepared specification defined in specs.json.

Thus we should remove the single quotations so that

we can correctly pass our specified tests.



Signed-off-by: Daichi Fukui <daichi1.fukui@toshiba.co.jp>

---

tests/Benchmark.IOzone/spec.json | 10 +++++-----

1 file changed, 5 insertions(+), 5 deletions(-)



diff --git a/tests/Benchmark.IOzone/spec.json b/tests/Benchmark.IOzone/spec.json

index 05af9b8..e1fbc3b 100644

--- a/tests/Benchmark.IOzone/spec.json

+++ b/tests/Benchmark.IOzone/spec.json

@@ -6,31 +6,31 @@

             "MOUNT_BLOCKDEV":"$SATA_DEV",

             "MOUNT_POINT":"$SATA_MP",

             "FILE_SIZE":"2M",

-            "TESTS":"'-i 0 -i 1 -i 2 -i 6 -i 7 -i 8 -i 9'"

+            "TESTS":"-i 0 -i 1 -i 2 -i 6 -i 7 -i 8 -i 9"

         },

         "mmc": {

             "MOUNT_BLOCKDEV":"$MMC_DEV",

             "MOUNT_POINT":"$MMC_MP",

             "FILE_SIZE":"2M",

-            "TESTS":"'-i 0 -i 1 -i 2 -i 6 -i 7 -i 8 -i 9'"

+            "TESTS":"-i 0 -i 1 -i 2 -i 6 -i 7 -i 8 -i 9"

         },

         "usb": {

             "MOUNT_BLOCKDEV":"$USB_DEV",

             "MOUNT_POINT":"$USB_MP",

             "FILE_SIZE":"2M",

-            "TESTS":"'-i 0 -i 1 -i 2 -i 6 -i 7 -i 8 -i 9'"

+            "TESTS":"-i 0 -i 1 -i 2 -i 6 -i 7 -i 8 -i 9"

         },

         "nopread": {

             "MOUNT_BLOCKDEV":"ROOT",

             "MOUNT_POINT":"$BOARD_TESTDIR/work",

             "FILE_SIZE":"2M",

-            "TESTS":"'-i 0 -i 1 -i 2 -i 6 -i 7 -i 8'"

+            "TESTS":"-i 0 -i 1 -i 2 -i 6 -i 7 -i 8"

         },

         "default": {

             "MOUNT_BLOCKDEV":"ROOT",

             "MOUNT_POINT":"$BOARD_TESTDIR/work",

             "FILE_SIZE":"2M",

-            "TESTS":"'-i 0 -i 1 -i 2 -i 6 -i 7 -i 8 -i 9'"

+            "TESTS":"-i 0 -i 1 -i 2 -i 6 -i 7 -i 8 -i 9"

         }

     }

}

--

2.17.1




[-- Attachment #2: Type: text/html, Size: 14919 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-24 10:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-22  1:23 [Fuego] [PATCH] IOzone: remove single quotation daichi1.fukui
2021-06-22 22:34 ` Tim.Bird
2021-06-24 10:58   ` daichi1.fukui

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.