|
From: <sv...@va...> - 2016-11-12 19:51:58
|
Author: mjw Date: Sat Nov 12 19:51:51 2016 New Revision: 16134 Log: Cleanup none/tests/nocwd.vgtest tmp dirs. The none/tests/nocwd creates a really deep temporary directory structure that is also inaccessible after the test. This causes issues with some build wrappers like koji which fail to cleanup such deep subdirectories. So explicitly cleanup the directory after the test. https://bugzilla.redhat.com/show_bug.cgi?id=1390282 Modified: trunk/none/tests/nocwd.vgtest Modified: trunk/none/tests/nocwd.vgtest ============================================================================== --- trunk/none/tests/nocwd.vgtest (original) +++ trunk/none/tests/nocwd.vgtest Sat Nov 12 19:51:51 2016 @@ -1,2 +1,3 @@ prog: nocwd vgopts: -q --trace-children=yes +cleanup: chmod u+rwx /tmp/wd_test_*; rm -rf /tmp/wd_test_* |