/srv/osrm/osrm-backend/features/testbot
NameSizeModeActions
64bit.feature8560644editdlrm
alternative.feature17340644editdlrm
alternative_loop.feature23280644editdlrm
annotations.feature38380644editdlrm
approaches.feature90110644editdlrm
bad.feature23350644editdlrm
basic.feature92620644editdlrm
bearing.feature82260644editdlrm
bearing_param.feature48810644editdlrm
compression.feature6370644editdlrm
continue_straight.feature25110644editdlrm
distance.feature69960644editdlrm
distance_matrix.feature235820644editdlrm
duration.feature13180644editdlrm
duration_matrix.feature231890644editdlrm
example.feature13000644editdlrm
exclude.feature38650644editdlrm
exclude_regressions.feature24070644editdlrm
fastest.feature11060644editdlrm
ferry.feature79350644editdlrm
fixed.feature51480644editdlrm
geometry.feature7120644editdlrm
graph.feature10380644editdlrm
impedance.feature33700644editdlrm
load.feature23630644editdlrm
loop.feature29130644editdlrm
matching.feature232250644editdlrm
maxspeed.feature13320644editdlrm
mode.feature110920644editdlrm
multi_level_routing.feature89160644editdlrm
nil.feature11000644editdlrm
oneway.feature10750644editdlrm
oneway_phantom.feature26480644editdlrm
opposite.feature5820644editdlrm
origin.feature26800644editdlrm
overlap.feature11000644editdlrm
penalty.feature51610644editdlrm
planetary.feature24740644editdlrm
projection.feature29830644editdlrm
routes.feature10740644editdlrm
snap.feature51310644editdlrm
snap_intersection.feature187840644editdlrm
speed.feature10050644editdlrm
status.feature38080644editdlrm
summary.feature23420644editdlrm
time.feature82400644editdlrm
traffic_speeds.feature68990644editdlrm
traffic_speeds_overflow.feature10600644editdlrm
traffic_turn_penalties.feature26330644editdlrm
trip.feature129810644editdlrm
turn_penalty.feature10310644editdlrm
utf.feature43030644editdlrm
via.feature122130644editdlrm
weight.feature136340644editdlrm
zero-speed-updates.feature49650644editdlrm
Edit: /srv/osrm/osrm-backend/features/testbot/alternative_loop.feature (2328B)
@routing @testbot @alternative Feature: Alternative route Background: Given the profile "testbot" Given a grid size of 200 meters # Force data preparation to single-threaded to ensure consistent # results for alternative generation during tests (alternative # finding is highly sensitive to graph shape, which is in turn # affected by parallelism during generation) And the contract extra arguments "--threads 1" And the extract extra arguments "--threads 1" And the customize extra arguments "--threads 1" And the partition extra arguments "--threads 1" Scenario: Alternative Loop Paths Given the node map """ a 2 1 b 7 4 8 3 c 5 6 d """ And the ways | nodes | oneway | | ab | yes | | bd | yes | | dc | yes | | ca | yes | And the query options | alternatives | true | When I route I should get | from | to | route | alternative | | 1 | 2 | ab,bd,dc,ca,ab,ab | | | 3 | 4 | bd,dc,ca,ab,bd,bd | | | 5 | 6 | dc,ca,ab,bd,dc,dc | | | 7 | 8 | ca,ab,bd,dc,ca,ca | | @mld-only Scenario: Alternative loop paths on a single node with an asymmetric circle # The test checks only MLD implementation, alternatives results are unpredictable for CH on windows (#4691, #4693) Given a grid size of 10 meters Given the node map """ a b c l d k e j f i h g """ And the nodes | node | barrier | | i | bollard | | g | bollard | And the ways | nodes | oneway | | abcdefghijkla | no | And the query options | alternatives | true | When I route I should get | from | to | route | alternative | weight | | e | k | abcdefghijkla,abcdefghijkla | abcdefghijkla,abcdefghijkla | 6.8 |