BUG=none TEST=Build and verify on Screebo TEST=make unit-tests ``` $ make tests/commonlib/bsd/string-test [==========] tests_commonlib_bsd_string-test(tests): Running 1 test(s). [ RUN ] test_skip_atoi [ OK ] test_skip_atoi [==========] tests_commonlib_bsd_string-test(tests): 1 test(s) run. [ PASSED ] 1 test(s). ``` Change-Id: Ifaaa80d0c696a625592ce301f9e3eefb2b4dcd98 Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/82910 Reviewed-by: Jakub Czapiga <czapiga@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			492 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			492 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| 
 | |
| tests-y += helpers-test
 | |
| tests-y += gcd-test
 | |
| tests-y += ipchksum-test
 | |
| tests-y += string-test
 | |
| 
 | |
| helpers-test-srcs += tests/commonlib/bsd/helpers-test.c
 | |
| 
 | |
| gcd-test-srcs += tests/commonlib/bsd/gcd-test.c
 | |
| gcd-test-srcs += src/commonlib/bsd/gcd.c
 | |
| 
 | |
| ipchksum-test-srcs += tests/commonlib/bsd/ipchksum-test.c
 | |
| ipchksum-test-srcs += src/commonlib/bsd/ipchksum.c
 | |
| 
 | |
| string-test-srcs += tests/commonlib/bsd/string-test.c
 | |
| string-test-srcs += src/commonlib/bsd/string.c
 |