diff --git a/tests/by-util/test_echo.rs b/tests/by-util/test_echo.rs index 3398708f1..c3c940099 100644 --- a/tests/by-util/test_echo.rs +++ b/tests/by-util/test_echo.rs @@ -825,4 +825,14 @@ fn test_emoji_output() { .args(&["πŸ¦€", "loves", "πŸš€", "and", "🌟"]) .succeeds() .stdout_only("πŸ¦€ loves πŸš€ and 🌟\n"); + + new_ucmd!() + .arg("🍎,🍌,πŸ’,πŸ₯") + .succeeds() + .stdout_only("🍎,🍌,πŸ’,πŸ₯\n"); + + new_ucmd!() + .arg("γ“γ‚“γ«γ‘γ―δΈ–η•Œ") + .succeeds() + .stdout_only("γ“γ‚“γ«γ‘γ―δΈ–η•Œ\n"); }