We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0dc195 commit 4b0bf74Copy full SHA for 4b0bf74
test.local_allocator.conf.in
@@ -1,7 +1,7 @@
1
(
2
(socket /tmp/@HOST@-socket)
3
(allocation_quantum 16)
4
- (localJournal /tmp/@HOST@-localJournal)
+ (localJournal @HOST@-localJournal)
5
(devices (@BIGDISK@))
6
(toLVM @HOST@-toLVM)
7
(fromLVM @HOST@-fromLVM)
test/common.ml
@@ -218,7 +218,7 @@ let tib = Int64.(gib * kib)
218
module Client = Xenvm_client.Client
219
220
let with_temp_file fn =
221
- let filename = "/tmp/vg" in
+ let filename = Filename.concat (Unix.getcwd ()) "vg" in
222
let f = Unix.openfile filename [Unix.O_CREAT; Unix.O_RDWR; Unix.O_TRUNC] 0o644 in
223
(* approximately 10000 4MiB extents for volumes, 100MiB for metadata and
224
overhead *)
0 commit comments