Project

General

Profile

root / branches / 1.1 / tests / test_simul_notransfers.py @ 847

1
from common import *
2

    
3
def get_config():
4
    return load_configfile("base_config_simulator.conf")
5
   
6
def test_preemption():
7
    h = load_tracefile(get_config(), PREEMPTION_TRACE)
8
    h.start()
9
    
10
def test_preemption_prematureend():
11
    h = load_tracefile(get_config(), PREEMPTION_PREMATUREEND_TRACE)
12
    h.start()
13
        
14
def test_preemption_prematureend2():
15
    h = load_tracefile(get_config(), PREEMPTION_PREMATUREEND2_TRACE)
16
    h.start()
17
        
18
def test_reservation():
19
    h = load_tracefile(get_config(), RESERVATION_TRACE)
20
    h.start()
21
        
22
def test_reservation_prematureend():
23
    h = load_tracefile(get_config(), RESERVATION_PREMATUREEND_TRACE)
24
    h.start()
25
        
26
def test_migrate():
27
    h = load_tracefile(get_config(), MIGRATE_TRACE)
28
    h.start()
29
        
30
def test_reuse1():
31
    h = load_tracefile(get_config(), REUSE1_TRACE)
32
    h.start()
33
        
34
def test_reuse2():
35
    h = load_tracefile(get_config(), REUSE2_TRACE)
36
    h.start()
37
        
38
def test_wait():
39
    h = load_tracefile(get_config(), WAIT_TRACE)
40
    h.start()