diff options
author | Anton Antonov <anton.antonov@arm.com> | 2023-04-13 11:06:35 +0100 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-04-14 11:23:06 -0400 |
commit | 53c5cc794f44df96c47c614d736c8ccd4f25139f (patch) | |
tree | fd38ec1ee0915e2f64bfe255ff6b8942c321c812 | |
parent | 3b0659d50faceeb8efaef43be5bc86fecaee921c (diff) | |
download | meta-security-53c5cc794f44df96c47c614d736c8ccd4f25139f.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 66932ed..004717d 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 | ||