Skip to content

Commit 0d3a4f3

Browse files
committed
correct test.only ci build script
this will cause the PR failed CI until AHRS is released
1 parent 36bc730 commit 0d3a4f3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libraries/BLEAdafruitService/src/services/BLEAdafruitQuaternion.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ class BLEAdafruitQuaternion : public BLEAdafruitSensor
4141
void setCalibration(Adafruit_Sensor_Calibration* calib);
4242

4343
protected:
44-
virtual void _update_timer(int32_t ms);
45-
virtual void _measure_handler(void);
46-
virtual void _notify_cb(uint16_t conn_hdl, uint16_t value);
44+
void _update_timer(int32_t ms);
45+
void _measure_handler(void);
46+
void _notify_cb(uint16_t conn_hdl, uint16_t value);
4747

4848
void _fitler_update(void);
4949

tools/build_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def build_examples(variant):
5252
sketchdir = os.path.dirname(sketch)
5353
if os.path.exists(sketchdir + '/.all.test.skip') or os.path.exists(sketchdir + '/.' + variant + '.test.skip'):
5454
success = "\033[33mskipped\033[0m "
55-
elif glob.glob(sketchdir+"/.*.test.only") and not os.path.exists(sketchdir + '/.build.' + variant):
55+
elif glob.glob(sketchdir+"/.*.test.only") and not os.path.exists(sketchdir + '/.build.' + variant + '.test.only'):
5656
success = "\033[33mskipped\033[0m "
5757
else:
5858
# TODO - preferably, would have STDERR show up in **both** STDOUT and STDERR.

0 commit comments

Comments
 (0)