Skip to content

Commit 7436835

Browse files
authored
Remove corech options, redundant tests (#6989)
* Remove corech options, redundant tests * Small fix
1 parent 5e6fdda commit 7436835

File tree

11 files changed

+5
-320
lines changed

11 files changed

+5
-320
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ Thumbs.db
4646
/example/build/
4747
/test/data/monaco.osrm*
4848
/test/data/ch
49-
/test/data/corech
5049
/test/data/mld
5150
/cmake/postinst
5251

features/options/contract/help.feature

Lines changed: 0 additions & 44 deletions
This file was deleted.

features/options/customize/help.feature

Lines changed: 0 additions & 38 deletions
This file was deleted.

features/options/datastore/datastore.feature

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ Feature: osrm-datastore command line options
3333
When I try to run "osrm-datastore {processed_file} --dataset-name cucumber/only_metric_test --only-metric"
3434
Then it should exit successfully
3535

36-
Scenario: osrm-datastore - Displaying help should work
37-
When I try to run "osrm-datastore {processed_file} --help"
38-
Then it should exit successfully
39-
4036
Scenario: osrm-datastore - Errors on invalid path
4137
When I try to run "osrm-datastore invalid_path.osrm"
4238
Then stderr should contain "[error] Config contains invalid file paths."

features/options/extract/help.feature

Lines changed: 0 additions & 47 deletions
This file was deleted.

features/options/partition/help.feature

Lines changed: 0 additions & 53 deletions
This file was deleted.

features/options/routed/help.feature

Lines changed: 0 additions & 71 deletions
This file was deleted.

features/testbot/matching.feature

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -136,22 +136,6 @@ Feature: Basic Map Matching
136136
| trace | matchings |
137137
| abcbd | abbd |
138138

139-
Scenario: Testbot - Map matching with core factor
140-
Given the contract extra arguments "--core 0.8"
141-
Given the node map
142-
"""
143-
a b c d
144-
e
145-
"""
146-
147-
And the ways
148-
| nodes | oneway |
149-
| abcd | no |
150-
151-
When I match I should get
152-
| trace | timestamps | matchings |
153-
| abcd | 0 1 2 3 | abcd |
154-
155139
Scenario: Testbot - Map matching with small distortion
156140
Given the node map
157141
"""

features/testbot/via.feature

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -65,32 +65,6 @@ Feature: Via points
6565
| waypoints | route | turns |
6666
| 1,2,3 | cd,ac,ab,bd,cd | depart,new name right,new name right,new name right,arrive |
6767

68-
Scenario: Simple via point with core factor
69-
Given the contract extra arguments "--core 0.8"
70-
Given the node map
71-
"""
72-
a b c d
73-
e f g
74-
h i
75-
j
76-
"""
77-
78-
And the ways
79-
| nodes |
80-
| abcd |
81-
| efg |
82-
| hi |
83-
| be |
84-
| cfh |
85-
| dgij |
86-
87-
When I route I should get
88-
| waypoints | route |
89-
| a,b,c | abcd,abcd,abcd,abcd |
90-
| c,b,a | abcd,abcd,abcd,abcd |
91-
| a,d,j | abcd,abcd,dgij,dgij |
92-
| j,d,a | dgij,dgij,abcd,abcd |
93-
9468
Scenario: Via point at a dead end
9569
Given the node map
9670
"""

scripts/ci/windows-build.bat

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ IF %ERRORLEVEL% NEQ 0 GOTO ERROR
5959

6060
SET test_region=monaco
6161
SET test_region_ch=ch\monaco
62-
SET test_region_corech=corech\monaco
6362
SET test_region_mld=mld\monaco
6463
SET test_osm=%test_region%.osm.pbf
6564
COPY %PROJECT_DIR%\test\data\%test_region%.osm.pbf %test_osm%
@@ -69,18 +68,13 @@ IF %ERRORLEVEL% NEQ 0 GOTO ERROR
6968
MKDIR ch
7069
XCOPY %test_region%.osrm.* ch\
7170
XCOPY %test_region%.osrm ch\
72-
MKDIR corech
73-
XCOPY %test_region%.osrm.* corech\
74-
XCOPY %test_region%.osrm corech\
7571
MKDIR mld
7672
XCOPY %test_region%.osrm.* mld\
7773
XCOPY %test_region%.osrm mld\
7874
%CONFIGURATION%\osrm-contract.exe %test_region_ch%.osrm
79-
%CONFIGURATION%\osrm-contract.exe --core 0.8 %test_region_corech%.osrm
8075
%CONFIGURATION%\osrm-partition.exe %test_region_mld%.osrm
8176
%CONFIGURATION%\osrm-customize.exe %test_region_mld%.osrm
8277
XCOPY /Y ch\*.* ..\test\data\ch\
83-
XCOPY /Y corech\*.* ..\test\data\corech\
8478
XCOPY /Y mld\*.* ..\test\data\mld\
8579
unit_tests\%CONFIGURATION%\library-tests.exe
8680
IF %ERRORLEVEL% NEQ 0 GOTO ERROR

0 commit comments

Comments
 (0)