mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-08 09:35:16 +00:00
8361894: sun/security/krb5/config/native/TestDynamicStore.java ensure that the test is run with sudo
Reviewed-by: rhalade
This commit is contained in:
parent
b7a4c9ced8
commit
f73e56e24f
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2021, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -27,13 +27,15 @@
|
||||
* @summary SCDynamicStoreConfig works
|
||||
* @modules java.security.jgss/sun.security.krb5
|
||||
* @library /test/lib
|
||||
* @run main/manual/native TestDynamicStore
|
||||
* @run main/manual/native/timeout=180 TestDynamicStore
|
||||
* @requires (os.family == "mac")
|
||||
*/
|
||||
|
||||
import jdk.test.lib.Asserts;
|
||||
import sun.security.krb5.Config;
|
||||
|
||||
import javax.swing.JOptionPane;
|
||||
|
||||
// =================== Attention ===================
|
||||
// This test calls a native method implemented in libTestDynamicStore.m
|
||||
// to modify system-level Kerberos 5 settings stored in the dynamic store.
|
||||
@ -56,6 +58,17 @@ public class TestDynamicStore {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
|
||||
// Show a popup to remind to run this test as sudo user
|
||||
// this will only trigger if sudo (root) user is not detected
|
||||
if (!"root".equals(System.getProperty("user.name"))) {
|
||||
|
||||
JOptionPane.showMessageDialog(null, """
|
||||
This test MUST be run as ROOT.\s
|
||||
Please close and RESTART the test.""");
|
||||
|
||||
Asserts.assertFalse(true, "This test must be run as ROOT");
|
||||
}
|
||||
|
||||
System.loadLibrary("TestDynamicStore");
|
||||
|
||||
Config cfg = Config.getInstance();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user