e2b12ca3cdb6cc4fa84b1ef6b311dc8385464d3e,unittests/test_policies.py,TestAsynchronousExecutionPolicy,test_kbd_interrupt_in_wait_with_concurrency,#TestAsynchronousExecutionPolicy#,306

Before Change


        self.assert_all_dead()

    def test_kbd_interrupt_in_wait_with_concurrency(self):
        checks = [
            KeyboardInterruptCheck(system=self.system,
                                   resources=self.resources),
            SleepCheck(10, system=self.system, resources=self.resources),
            SleepCheck(10, system=self.system, resources=self.resources),
            SleepCheck(10, system=self.system, resources=self.resources)
        ]
        self._run_checks(checks, 4)

    def test_kbd_interrupt_in_wait_with_limited_concurrency(self):
        // The general idea for this test is to allow enough time for all the

After Change


        self.assert_all_dead()

    def test_kbd_interrupt_in_wait_with_concurrency(self):
        checks = [KeyboardInterruptCheck(), SleepCheck(10),
                  SleepCheck(10), SleepCheck(10)]
        self._run_checks(checks, 4)

    def test_kbd_interrupt_in_wait_with_limited_concurrency(self):
        // The general idea for this test is to allow enough time for all the
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: eth-cscs/reframe
Commit Name: e2b12ca3cdb6cc4fa84b1ef6b311dc8385464d3e
Time: 2018-04-22
Author: karakasis@cscs.ch
File Name: unittests/test_policies.py
Class Name: TestAsynchronousExecutionPolicy
Method Name: test_kbd_interrupt_in_wait_with_concurrency


Project Name: eth-cscs/reframe
Commit Name: e2b12ca3cdb6cc4fa84b1ef6b311dc8385464d3e
Time: 2018-04-22
Author: karakasis@cscs.ch
File Name: unittests/test_policies.py
Class Name: TestAsynchronousExecutionPolicy
Method Name: test_kbd_interrupt_in_wait_with_limited_concurrency


Project Name: eth-cscs/reframe
Commit Name: ccaa108a2dd93f92967eb20a47e7559c9144b35f
Time: 2020-03-11
Author: manitaras@cscs.ch
File Name: unittests/test_policies.py
Class Name: TestSerialExecutionPolicy
Method Name: test_sigterm