Skip to content

Commit

Permalink
Fix overlay mount path.
Browse files Browse the repository at this point in the history
  • Loading branch information
danluu committed Oct 22, 2017
1 parent 04c7dfc commit aa4fd62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions inputs.csv
Expand Up @@ -14,6 +14,4 @@ images/ext3-largefile.img.gz,76,d3dc8738942a7664e38391e3fb91f789
images/ext4-largefile.img.gz,7778,2717e3c9509fc662ae67ebf5293e1c97
images/fat12-largefile.img.gz,49,0559b8f3bf655a840f576b9157de2690
images/jfs-largefile.img.gz,360,e2b14f7b4196fc74026b4b3c72f48ee4
images/xfs-largefile.img.gz,6976,1d49afb6385df87742d8766d7c657b6c


images/xfs-largefile.img.gz,6976,1d49afb6385df87742d8766d7c657b6c
2 changes: 1 addition & 1 deletion main.py
Expand Up @@ -192,7 +192,7 @@ def setup_and_run_test(config, results_writer, do_corruption, do_overlay):
if do_overlay:
overlay_upperdir = tempfile.mkdtemp()
overlay_workdir = tempfile.mkdtemp()
overlay_mount = tempfile.mkdtemp()
overlay_mount = tempfile.mkdtemp() + '/'
overlay_command = 'sudo mount -t overlay -o lowerdir={},upperdir={},workdir={} overlay {}'.format(
mountpoint,
overlay_upperdir,
Expand Down

0 comments on commit aa4fd62

Please sign in to comment.