summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/FT_App/FT_App.mpc
blob: 121a7ea3a1fb358296a26ad4dce6557b8ed2e697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
project(*Server): taoserver, fault_tolerance, orbsvcsexe{
  exename = ft_replica
  Source_Files {
    FT_Replica.cpp
    FT_TestReplica_i.cpp
    FT_ReplicaFactory_i.cpp
  }
  Documentation_Files {
    README
    FT_App.mpc
  }
}

project(*Client_Unit): taoclient, fault_tolerance, iormanip, ftorb, orbsvcsexe {
  exename = ft_client_unit
  includes += $(TAO_ROOT)
  Source_Files {
    FT_Client_Unit.cpp
    FT_UnitTests.cpp
  }
}

project(*Client): taoclient, fault_tolerance, iormanip, ftorb, orbsvcsexe {
  exename = ft_client
  includes += $(TAO_ROOT)
  Source_Files {
    FT_Client.cpp
  }
}

project(*Notifier): taoserver, fault_tolerance, orbsvcsexe {
  exename = ft_notifier
  Source_Files {
    FTAPP_Notifier_Main.cpp
    StubFaultNotifier.cpp
  }

  // Custom folder: script to run this test
// too bad this doesn't work!
// If you omit the generic_outputext, it creates an empty folder
// if you include the generic_outputext, it tries to "build" the .pl 
//    file which runs the test even when you don't want to.
//  Define_Custom(Script) {
//    inputext = .pl, .py, .rb
//    generic_outputext = .txt
//  }
//  Script_Files {
//    run_test_detector.pl
//  }

  // explicitly omit IDL and doc files
  IDL_Files {
  }
  Documentation_Files {
    // pretend the pl file is documentation for now
    run_test_detector.pl
  }
}

project(*Analyzer): taoclient, fault_tolerance, orbsvcsexe {
  exename = ft_analyzer

  Source_Files {
    FTAPP_Analyzer_Main.cpp
    StubFaultAnalyzer.cpp
    StubFaultConsumer.cpp
    StubBatchConsumer.cpp
  }

//  // Custom folder: script to run this test
//  Define_Custom(Script){
//    inputext = .pl, .py, .rb
//    generic_outputext = .txt
//  }
//
//  Script_Files {
//    run_test_detector.pl
//  }

  // explicitly omit IDL files
  IDL_Files {
  }
  Documentation_Files {
    // pretend the pl file is documentation for now
    run_test_notifier.pl
  }
}

project(*FactoryRegistry): taoclient, fault_tolerance, orbsvcsexe {
  exename = ft_registry

  Source_Files {
    FTAPP_FactoryRegistry_Main.cpp
    FactoryRegistry_i.cpp
  }

//  // Custom folder: script to run this test
//  Define_Custom(Script){
//    inputext = .pl, .py, .rb
//    generic_outputext = .txt
//  }
//
//  Script_Files {
//    run_test_detector.pl
//  }

  // explicitly omit IDL files
  IDL_Files {
  }
  Documentation_Files {
    // pretend the pl file is documentation for now
    run_test_registry.pl
  }
}