From 53c5cc794f44df96c47c614d736c8ccd4f25139f Mon Sep 17 00:00:00 2001 From: Anton Antonov Date: Thu, 13 Apr 2023 11:06:35 +0100 Subject: Flush caches after OEQA tests Make sure that all changes a saved after running the tests. Signed-off-by: Anton Antonov Signed-off-by: Armin Kuster --- meta-parsec/lib/oeqa/runtime/cases/parsec.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta-parsec/lib/oeqa/runtime') 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): self.parsec_status='pgrep -l parsec' self.parsec_reload='/etc/init.d/parsec reload' + def tearDown(self): + self.target.run('sync') + super(ParsecTest, self).tearDown() + def copy_subconfig(self, cfg, provider): """ Copy a provider configuration to target and append it to Parsec config """ -- cgit v1.2.3-54-g00ecf