We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22897c1 commit 902bfe5Copy full SHA for 902bfe5
t/t0003-module.t
@@ -244,5 +244,14 @@ test_expect_success 'broker.module-status rejects request from unknown sender' '
244
test_must_fail module_status 2>sender.err &&
245
grep "error decoding/finding broker.module-status" sender.err
246
'
247
+# issue #5255
248
+test_expect_success 'module with version ext can be loaded by name' '
249
+ mkdir -p testmoddir &&
250
+ cp $testmod testmoddir/testmod.so.0.0.0 &&
251
+ FLUX_MODULE_PATH_PREPEND=$(pwd)/testmoddir flux start \
252
+ bash -c "flux module load testmod && flux module list -l" \
253
+ >modlist.out &&
254
+ grep testmod.so.0.0.0 modlist.out
255
+'
256
257
test_done
0 commit comments