Skip to content

Commit 5b0b5bc

Browse files
committed
Use exclude_dirs to skip dirs on included libs
to avoid multiple definition of main if included library contains tests. Example of .arduino-ci.yaml: ``` unittest: libraries: - libA platforms: - uno exclude_dirs: - libA/test ``` See issue Arduino-CI#168
1 parent dc21420 commit 5b0b5bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/arduino_ci/cpp_library.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ def cpp_files_unittest
186186
# @param [Array<String>] aux_libraries
187187
# @return [Array<Pathname>]
188188
def cpp_files_libraries(aux_libraries)
189-
arduino_library_src_dirs(aux_libraries).map { |d| cpp_files_in(d) }.flatten.uniq
189+
l = arduino_library_src_dirs(aux_libraries).map { |d| cpp_files_in(d) }.flatten.uniq
190+
l = l.reject { |p| @exclude_dirs.any? { |d| p.dirname.to_s.end_with?(d.to_s) } }
190191
end
191192

192193
# Returns the Pathnames for all paths to exclude from testing and compilation

0 commit comments

Comments
 (0)