diff options
author | Anton Antonov <anton.antonov@arm.com> | 2023-04-13 11:06:35 +0100 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-04-18 10:15:54 -0400 |
commit | ac1b3ecabc0386e7ca9b7925ada0087d940040d2 (patch) | |
tree | 63552b899989a092607ea643669dc54bf1f758f0 | |
parent | 2aa48e6f4e519abc7d6bd56da2c067309a303e80 (diff) | |
download | meta-security-ac1b3ecabc0386e7ca9b7925ada0087d940040d2.tar.gz |
Flush caches after OEQA tests
Make sure that all changes a saved after running the tests.
Signed-off-by: Anton Antonov <Anton.Antonov@arm.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-parsec/lib/oeqa/runtime/cases/parsec.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-parsec/lib/oeqa/runtime/cases/parsec.py b/meta-parsec/lib/oeqa/runtime/cases/parsec.py index 6be84ba..9df5bec 100644 --- a/meta-parsec/lib/oeqa/runtime/cases/parsec.py +++ b/meta-parsec/lib/oeqa/runtime/cases/parsec.py | |||
@@ -24,6 +24,10 @@ class ParsecTest(OERuntimeTestCase): | |||
24 | self.parsec_status='pgrep -l parsec' | 24 | self.parsec_status='pgrep -l parsec' |
25 | self.parsec_reload='/etc/init.d/parsec reload' | 25 | self.parsec_reload='/etc/init.d/parsec reload' |
26 | 26 | ||
27 | def tearDown(self): | ||
28 | self.target.run('sync') | ||
29 | super(ParsecTest, self).tearDown() | ||
30 | |||
27 | def copy_subconfig(self, cfg, provider): | 31 | def copy_subconfig(self, cfg, provider): |
28 | """ Copy a provider configuration to target and append it to Parsec config """ | 32 | """ Copy a provider configuration to target and append it to Parsec config """ |
29 | 33 | ||