Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ gdrcopy_apiperf: apiperf.o common.o
$(LINK.cc) -o $@ $^ $(LIBS) -lrt

gdrcopy_pplat: pplat.o common.o
$(NVCC) -o $@ $^ $(LDFLAGS) -lgdrapi -lcuda
$(LINK.cc) -o $@ $^ $(LDFLAGS) -lgdrapi -lcuda -lcudart_static

%.o: %.cu
$(NVCC) -o $@ -c $^ $(LIBS) $(CPPFLAGS) $(NVCCFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion tests/testsuites/testsuite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ namespace gdrcopy {

for (std::vector<std::string>::iterator it = tests.begin(); it != tests.end(); ++it) {
if ((test_map->find(*it) == test_map->end()) && (extended_test_map->find(*it) == extended_test_map->end())) {
gdrcopy::test::print_dbg("Error: Encountered unknown test %s\n", *it);
gdrcopy::test::print_dbg("Error: Encountered unknown test %s\n", it->c_str());
return EINVAL;
}
}
Expand Down