From e71d60268e1fe4872d93b06f8cf6152df8e076f7 Mon Sep 17 00:00:00 2001
From: Ben Cumming <bcumming@cscs.ch>
Date: Tue, 14 Apr 2020 16:56:33 +0200
Subject: [PATCH] fix names of gpu probe tests (#1012)

Fix build errors for the GPU tests introduced in #1011.
---
 test/unit/test_probe.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/unit/test_probe.cpp b/test/unit/test_probe.cpp
index 9b8582e1..f3718bff 100644
--- a/test/unit/test_probe.cpp
+++ b/test/unit/test_probe.cpp
@@ -482,14 +482,14 @@ TEST(probe, gpu_expsyn_g) {
     }
 }
 
-TEST(probe, multicore_ion_conc) {
+TEST(probe, gpu_ion_conc) {
     context ctx = make_context(proc_allocation{1, arbenv::default_gpu()});
     if (has_gpu(ctx)) {
         run_ion_density_probe_test<gpu::backend>(ctx);
     }
 }
 
-TEST(probe, multicore_ion_currents) {
+TEST(probe, gpu_ion_currents) {
     context ctx = make_context(proc_allocation{1, arbenv::default_gpu()});
     if (has_gpu(ctx)) {
         run_ion_current_probe_test<gpu::backend>(ctx);
-- 
GitLab