forked from JuliaRobotics/IncrementalInference.jl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathruntests.jl
67 lines (40 loc) · 1.37 KB
/
runtests.jl
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
# addprocs(3)
using Base.Test
using Compat
# using IncrementalInference
println("[TEST] out of module evalPotential...")
include("TestModuleFunctions.jl")
println("Success")
print("[TEST] Ensure memory return is working properly...")
include("typeReturnMemRef.jl")
println("Success")
print("[TEST] Ensure converter types can be run from extending namespaces...")
include("saveconvertertypes.jl")
println("Success")
println("[TEST] packing converters work...")
include("testgraphpackingconverters.jl")
println("Success")
println("[TEST] generic root finding by numeric solve of residual functions...")
include("testNumericRootGenericRandomized.jl")
println("Success")
println("[TEST] GenericWrapParam functors...")
include("testGenericWrapParam.jl")
println("Success")
println("[TEST] with simple local constraint examples Odo, Obsv2...")
include("testlocalconstraintexamples.jl")
println("Success")
println("[TEST] partial constraints...")
include("testpartialconstraint.jl")
println("Success")
println("[TEST] partial constraints...")
include("testnullhypothesis.jl")
println("Success")
println("[TEST] with local Graphs.jl dictionary and arrays only (multicore)...")
include("fourdoortest.jl")
println("Success")
println("[TEST] saving to and loading from .jld file")
savejld(fg, file="tempfg.jld" )
fgu = loadjld( file="tempfg.jld" )
Base.rm("tempfg.jld")
println("Success")
#