summaryrefslogtreecommitdiffstats
path: root/src/test/ui-fulldeps/issue-2804.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui-fulldeps/issue-2804.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui-fulldeps/issue-2804.rs')
-rw-r--r--src/test/ui-fulldeps/issue-2804.rs81
1 files changed, 0 insertions, 81 deletions
diff --git a/src/test/ui-fulldeps/issue-2804.rs b/src/test/ui-fulldeps/issue-2804.rs
deleted file mode 100644
index 571028c5e..000000000
--- a/src/test/ui-fulldeps/issue-2804.rs
+++ /dev/null
@@ -1,81 +0,0 @@
-// run-pass
-
-#![allow(non_camel_case_types)]
-#![allow(dead_code)]
-
-use std::collections::{BTreeMap, HashMap};
-use std::option;
-
-#[derive(Clone, Debug)]
-enum Json {
- I64(i64),
- U64(u64),
- F64(f64),
- String(String),
- Boolean(bool),
- Array(Array),
- Object(Object),
- Null,
-}
-
-type Array = Vec<Json>;
-type Object = BTreeMap<String, Json>;
-
-enum object {
- bool_value(bool),
- int_value(i64),
-}
-
-fn lookup(table: Object, key: String, default: String) -> String
-{
- match table.get(&key) {
- option::Option::Some(&Json::String(ref s)) => {
- s.to_string()
- }
- option::Option::Some(value) => {
- println!("{} was expected to be a string but is a {:?}", key, value);
- default
- }
- option::Option::None => {
- default
- }
- }
-}
-
-fn add_interface(_store: isize, managed_ip: String, data: Json) -> (String, object)
-{
- match &data {
- &Json::Object(ref interface) => {
- let name = lookup(interface.clone(),
- "ifDescr".to_string(),
- "".to_string());
- let label = format!("{}-{}", managed_ip, name);
-
- (label, object::bool_value(false))
- }
- _ => {
- println!("Expected dict for {} interfaces, found {:?}", managed_ip, data);
- ("gnos:missing-interface".to_string(), object::bool_value(true))
- }
- }
-}
-
-fn add_interfaces(store: isize, managed_ip: String, device: HashMap<String, Json>)
--> Vec<(String, object)> {
- match device["interfaces"] {
- Json::Array(ref interfaces) =>
- {
- interfaces.iter().map(|interface| {
- add_interface(store, managed_ip.clone(), (*interface).clone())
- }).collect()
- }
- _ =>
- {
- println!("Expected list for {} interfaces, found {:?}", managed_ip,
- device["interfaces"]);
- Vec::new()
- }
- }
-}
-
-pub fn main() {}