Project

General

Profile

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

1
from common import *
2

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

    
40
def test_piggybacking():
41
    h = load_tracefile(get_config(), PIGGYBACKING_TRACE)
42
    h.start()
43

    
44
def test_wait():
45
    h = load_tracefile(get_config(), WAIT_TRACE)
46
    h.start()