diff --git a/.env.dist b/.env.dist index fdf2973d..5c4681c9 100644 --- a/.env.dist +++ b/.env.dist @@ -47,10 +47,15 @@ BENCHER_API_ADDRESS=10.5.0.14 BENCHER_CLI_ADDRESS=10.5.0.15 POSTGRES_ADDRESS=10.5.0.20 VMETRICS_ADDRESS=10.5.0.25 +METABASE_ADDRESS=10.5.0.30 +METABASE_META_DB_ADDRESS=10.5.0.35 # IP address for QEMU monitor. Used for creating and restoring snapshoots QEMU_MONITOR_ADDRESS=10.0.2.2 # Ports +# Metabase port +METABASE_PORT=3200 +METABASE_META_DB_PORT=5445 # Ports for Bencher BENCHER_API_PORT=61016 BENCHER_CLI_PORT=3000 @@ -81,3 +86,8 @@ SSH_SUSE_PORT_156=1616 SSH_QEMU_PORT=2222 # Internal SSH port for Yocto and Suse VMs SSH_TO_QEMU_PORT=22 + +# Metabase +METABASE_META_DB_NAME=metabase +METABASE_META_USER=metabase +METABASE_META_PASS=metabase diff --git a/Makefile b/Makefile index f49d789b..2747fe73 100644 --- a/Makefile +++ b/Makefile @@ -15,12 +15,16 @@ BENCHER_API_CONF_VOLUME := ${DOCKER_PREFIX}-bencher-conf BENCHER_API_DB_VOLUME := ${DOCKER_PREFIX}-bencher-database BENCHER_API_LOGS_VOLUME := ${DOCKER_PREFIX}-bencher-logs VMETRICS_DATA_VOLUME := ${DOCKER_PREFIX}-vmetrics-data +METABASE_META_VOLUME := ${DOCKER_PREFIX}-metabase-meta-data +METABASE_APP_VOLUME := ${DOCKER_PREFIX}-metabase-app # Paths HOST_LAYERS_PATH := ${CURDIR}/layers HOST_CONF_PATH := ${CURDIR}/conf HOST_SCRIPTS_PATH := ${CURDIR}/scripts TESTS_DIR := ${CURDIR}/tests +METABASE_BACKUP_SCRIPT := ${CURDIR}/metabase_prototype/db/init/backup_init.sh +METABASE_DEFAULT_DUMP := ${CURDIR}/metabase_prototype/metabase_backup.dump # Python define get_python_required_libs @@ -67,7 +71,7 @@ docker-compose-down: .PHONY: ensure-volumes ensure-volumes: docker - @for volume in ${DOCKER_OPENSUSE_VOLUME} ${BENCHER_API_CONF_VOLUME} ${BENCHER_API_DB_VOLUME} \ + @for volume in ${DOCKER_OPENSUSE_VOLUME} ${BENCHER_API_CONF_VOLUME} ${BENCHER_API_DB_VOLUME} ${METABASE_META_VOLUME} ${METABASE_APP_VOLUME} \ ${BENCHER_API_LOGS_VOLUME} ${VMETRICS_DATA_VOLUME} ${DOCKER_POSTGRES_VOLUME}; do \ if ! docker volume inspect $$volume > /dev/null 2>&1; then \ docker volume create $$volume; \ diff --git a/README.md b/README.md index 0daac3cb..b3d2eabf 100644 --- a/README.md +++ b/README.md @@ -11,15 +11,16 @@ Performance and Endurance Testing of OS images. ### Repository structure -| Folder | Description | -|-------------------|------------------------------------------| -| [conf](conf) | Configuration files | -| [docker](docker) | Essential Docker-related files | -| [docs](docs) | Markdown documentation of the repository | -| [layers](layers) | Layers content (for Poky) | -| [scripts](scripts)| Shell scripts | -| [src](src) | Source code and core development files | -| [tests](tests) | Unit tests and other | +| Folder | Description | +|---------------------------------------------|--------------------------------------------| +| [conf](conf) | Configuration files | +| [docker](docker) | Essential Docker-related files | +| [docs](docs) | Markdown documentation of the repository | +| [layers](layers) | Layers content (for Poky) | +| [metabase_prototype](metabase_prototype) | Metabase files: queries and synthetic data | +| [scripts](scripts) | Shell scripts | +| [src](src) | Source code and core development files | +| [tests](tests) | Unit tests and other | ### Methodologies @@ -85,6 +86,10 @@ After initializing both Docker image and volumes, starts the following container - Victoria Metrics container (port:VMETRICS_PORT) collects metrics from the Yocto and Suse-156 container provided by node exporters. +- Metabase container: (port:METABASE_PORT) used to create queries and dashboards with collected metrics + +- Metabase meta data container: (port:METABASE_META_DB_PORT) needed by Metabase to save settings: queries, dashboards, connection information + Results can be obtained from the Python container logs after all the tests are finished: ```bash @@ -95,7 +100,7 @@ Note: To create an image with all the packages specified in [packages.conf](conf To add a new utility, you need to update the [packages.conf](conf/packages.conf), [local.conf](conf/local.conf) and write the appropriate [recipe](layers/meta-image-tests/). -### 3. Enviroment configuration +### 3. Environment configuration [.env.dist](.env.dist) is used to store env variables, which is included by Makefile. It describes the parameters: * Common variables (users, passwords) diff --git a/docker/compose.yml b/docker/compose.yml index a7f1a374..af0b8583 100644 --- a/docker/compose.yml +++ b/docker/compose.yml @@ -166,6 +166,44 @@ services: yocto-network: ipv4_address: ${BENCHER_CLI_ADDRESS} + imgtests-metabase-meta-db: + image: postgres:17.7 + environment: + POSTGRES_DB: ${METABASE_META_DB_NAME} + POSTGRES_USER: ${METABASE_META_USER} + POSTGRES_PASSWORD: ${METABASE_META_PASS} + PGPORT: ${METABASE_META_DB_PORT} + volumes: + - ${METABASE_BACKUP_SCRIPT}:/docker-entrypoint-initdb.d/init.sh + - ${METABASE_DEFAULT_DUMP}:/docker-entrypoint-initdb.d/def.dump + - ${METABASE_META_VOLUME}:/var/lib/postgresql/data + networks: + yocto-network: + ipv4_address: ${METABASE_META_DB_ADDRESS} + command: -p ${METABASE_META_DB_PORT} + restart: unless-stopped + + imgtests-metabase: + image: metabase/metabase:v0.61.2.6 + depends_on: + - imgtests-metabase-meta-db + - imgtests-postgres + environment: + MB_DB_TYPE: postgres + MB_DB_DBNAME: ${METABASE_META_DB_NAME} + MB_DB_PORT: ${METABASE_META_DB_PORT} + MB_DB_USER: ${METABASE_META_USER} + MB_DB_PASS: ${METABASE_META_PASS} + MB_DB_HOST: imgtests-metabase-meta-db + ports: + - "${METABASE_PORT}:3000" + volumes: + - ${METABASE_APP_VOLUME}:/metabase-data + networks: + yocto-network: + ipv4_address: ${METABASE_ADDRESS} + restart: unless-stopped + volumes: imgtests-yocto-build: external: true @@ -187,6 +225,10 @@ volumes: external: true imgtests-analyzer-data: external: true + imgtests-metabase-meta-data: + external: true + imgtests-metabase-app: + external: true networks: yocto-network: diff --git a/docs/guides/metabase-backup-guide.md b/docs/guides/metabase-backup-guide.md new file mode 100644 index 00000000..5e15c4f1 --- /dev/null +++ b/docs/guides/metabase-backup-guide.md @@ -0,0 +1,63 @@ +# Руководство по созданию и использованию бэкапов для metabase + +В этом рукводстве расписаны основные шаги для создания бэкапов запущенного сервиса metabase, а также переноса его на другие системы с последующей инциализацией. + +## Создание бэкапов + +**Metabase** поднимается вместе со своей дополнительной базой данных, где хранит все данные для входа, а также данные о графиках и дашбордах. + +Для того чтобы сделать бэкап у вас должна быть запущена эта БД `os-image-testing-imgtests-metabase-meta-db-1`. + +Далее выполните команду в терминале: + +```bash +docker exec os-image-testing-imgtests-metabase-meta-db-1 pg_dump -U metabase -d metabase -F c -b -v > metabase_backup_$(date +%Y%m%d).dump +``` + +После выполнения этой команды в текущей директории создастся дамп БД metabase *(пр. metabase_backup_20260407.dump)*. Далее можно передать его другому разработчику. Также, не забудьте передать ему данные для входа на сайт. + +## Импорт бэкапа + +Предположим, у вас есть файл дампа metabase_backup.dump, который Вы положили в папку с проектом, а также данные для входа. + +### **Шаг 1. Запустите проект** + +```bash +make docker-run-metabase +``` + +### **Шаг 2. Остановите контейнер metabase** + +```bash +docker stop os-image-testing-imgtests-metabase-1 +``` + +### **Шаг 3. Очистите текущую пустую базу** + +Так как Metabase при первом старте уже успел создать пустые таблицы, их надо удалить, чтобы не было конфликтов при восстановлении. + +```bash +docker exec -i os-image-testing-imgtests-metabase-meta-db-1 psql -U metabase -d postgres -c "DROP DATABASE metabase;" + +docker exec -i os-image-testing-imgtests-metabase-meta-db-1 psql -U metabase -d postgres -c "CREATE DATABASE metabase;" +``` + +### **Шаг 4. Запишите дамп в базу** + +```bash +docker exec -i os-image-testing-imgtests-metabase-meta-db-1 pg_restore -U metabase -d metabase < ваш_дамп_файл.dump +``` + +### **Шаг 5. Снова запустите Metabase** + +```bash +docker start os-image-testing-imgtests-metabase-1 +``` + +У вас поднимется заполненный **metabase** со всеми графиками и дашбордами. + +## Полезные ссылки + +* [Руководство по созданию дампов БД metabase](https://mintlify.wiki/metabase/metabase/operations/backing-up) + +* [Установка metabase в production](https://www.metabase.com/docs/latest/installation-and-operation/running-metabase-on-docker#production-installation) diff --git a/docs/guides/metabase-dashboard-creating-guide.md b/docs/guides/metabase-dashboard-creating-guide.md new file mode 100644 index 00000000..c01a4bfe --- /dev/null +++ b/docs/guides/metabase-dashboard-creating-guide.md @@ -0,0 +1,133 @@ +# Создание дашбордов + +Отображение данных в Metabase происходит на **дашбордах** в виде размещенных на них **карточках**. +После поднятия базы данных и контейнеров для metabase для создания дашбордов необходимо: + +- Зарегистрироваться или авторизироваться в metabase (локальная учётная запись); +- Создать запросы для карточек к базе данных и настроить их визуализацию; +- Объединить карточки на дашборде и настроить фильтрацию. + +## Регистрация/авторизация в metabase + +### Создание учетной записи metabase + +При первом открытии metabase в браузере (по умолчанию, `localhost:3000`) открывается окно начала работы. +![Начальное окно](../images/metabase-start-window.png) + +Для продолжения работы требуется нажать кнопку `Начнем`. Дополнительные сведения доступны в [документации Metabase](https://www.metabase.com/docs/v0.59/configuring-metabase/setting-up-metabase.html). + +Далее необходимо настроить: +- Данные пользователя metabase. Для примера, создадим пользователя metrics и компанию os-image-testing. +![alt text](../images/metabase-user-registration.png) +- Цель использования metabase +![alt text](../images/metabase-usage-purpose.png) +- Подключение к базе данных с основными данными, которые требуется отображать. Для начала необходимо выбрать СУБД, +![alt text](../images/metabase-choose-db.png) +Затем необходимо настроить параметры подключения к базе данных. +![alt text](../images/metabase-connection-settings.png) +- Разрешение на использование данных +![alt text](../images/metabase-data-permissions.png) + +После авторизации появится основное меню metabase. +![alt text](../images/metabase-landing.png) + +## Создание запросов к базе данных + +Перед началом работы рекомендуется настроить коллекцию для сущностей metabase. + +### Создание коллекции + +Все сущности Metabase (запросы, дашборды) располагаются в определенной **коллекции**. +У пользователя по умолчанию есть собственная коллекция. +Для каждого отдельного проекта рекомендуется создать отдельную коллекцию. + +Для этого: +- В меню слева необходимо нажать `Коллекции > + (Создайте новую коллекцию)` +![alt text](../images/metabase-create-collection.png) +- Настроить Имя коллекции, Описание (опционально) и место (другую коллекцию), где будет сохранена коллекция. Коллекции в metabase - вложенные. +![alt text](../images/metabase-store-collection.png) + +Все сущности, относящиеся к определенному проекту, рекомендуется сохранять в одной выбранной коллекции. + +### Создание нового SQL запроса + +- Основной механизм получения данных для визуализаци в metabase - SQL-запросы к базе данных. +- Каждый график, диаграмма и таблица требуют указания своего SQL запроса и способа его визуализации. + +Для создания нового SQL запроса: +- В меню сверху перейдите `Новый > SQL запрос` +- Откроется меню создания SQL-запроса. +![alt text](../images/metabase-new-sql-query.png) +- В поле ввода текста посередине вставьте ваш SQL-запрос. +- Запрос должен обращаться к базе данных, подключение к которой было настроено ранее. + +**Настройка переменных в запросе** + +- При создании запроса с переменными для фильтрации указывайте переменные как специальный тип переменных metabase - `фильтр поля`. Это позволяет metabase определять значения для фильтрации по уникальным именам в базе. +- Для этого в тексте запроса укажите поле, по которому будет проводиться фильтрация, в двойных фигурных скобках: `{{variable}}`. Используйте фильтр поля везде, кроме отдельных случаев (например, настройки переменной выбора времени). +- Для настройки переменных в меню SQL-запроса откройте справа панель "Переменные и параметры": `{x} (Переменные)` +- Для каждой переменной укажите тип переменной и настройте другие её параметры. Для создания переменной типа "Фильтр поля" укажите: + - тип переменной - Фильтр поля; + - таблицу/view в базе, к которой обращается запрос; + - поле, по которому будет производиться фильтрация. +![alt text](../images/metabase-query-settings.png) + +### Визуализация данных + +- После настройки текста запроса и всех переменных в запросе нажмине на кнопку `Выполнить запрос`. +- При выполнении запроса отобразится таблица с данными, полученными в результате выполнения запроса +![alt text](../images/metabase-execute-query.png) +- Для настройки отображения запроса нажмите на кнопку `Визуализация` в левом нижнем углу +- Выберите желаемый тип графика/таблицы/диаграммы +![alt text](../images/metabase-set-visualization.png) +- Нажмите на значок `⛭` рядом с кнопкой `Визуализация` для настройки отображения графика: укажите типы осей, другие параметры. +![alt text](../images/metabase-setup-chart.png) +- После настройки отображения нажмите на кнопку `Готово`. + +Для сохранения запроса в правом верхнем углу нажмите кнопку `Сохранить`. Укажите: +- Имя запроса, +- Описание (опционально), +- Коллекцию, в которую будет сохранён запрос. + +После сохранения запрос появится в выбранной коллекции. + +## Создание дашборда + +### Размещение карточки на дашборде + +Для создания нового дашборда: +- В меню сверху перейдите `Новый > Дашборд` +- Укажите: + - Имя дашборда, + - Описание (опционально), + - Коллекцию, в которую будет сохранён дашборд. +- Откроется меню редактирования дашборда +![alt text](../images/metabase-create-dashboard.png) +- Нажмите на кнопку `Добавить диаграмму`, в панели справа выберите созданный запрос или создаёте новый. +![alt text](../images/metabase-dashboard-add-chart.png) +- Расположите карточку запроса на дашборде +![alt text](../images/metabase-dashboard-place-chart.png) + +- Размер и расположение карточки на дашборде можно менять, перетягивая и растягивая карточку за её края по сетке. +- Карточки можно располагать на разных вкладках. + +### Добавление фильтров + +Для фильтрации данных необходимо добавить фильтры по переменным, настроенным при создании запроса. +- В панели сверху нажмите на кнопку с воронкой `(Добавить фильтр или параметр)` +![alt text](../images/metabase-dashboard-add-filter.png) +- Выберите подходящий тип фильтра. +- В открывшейся панели справа настройте название фильтра и другие параметры +- На всех нужных карточках на дашборде выберите переменные, по которым будет проводиться фильтрация. Если подходящей переменной не нашлось, исправьте настройки запроса. +- Нажмите на кнопку `Готово` справа снизу. +![alt text](../images/metabase-set-filter.png) + +### Сохранение и изменение дашборда + +Для сохранения изменений в панели сверху нажмите кнопку `Сохранить`. +- Для изменения дашборда в дальнейшем на окне дашборда в панели сверху нажмите на значок карандаша `Изменить дашборд`. +- Для добавления новых карточек (запросов) в окне редактирования дашборда в панели сверху нажмите `+ (Добавить запросы)`. + +## Примечания + +- Дополнительные сведения доступны в [документации Metabase](https://www.metabase.com/docs/v0.59/configuring-metabase/setting-up-metabase.html). diff --git a/docs/guides/metabase_specs.md b/docs/guides/metabase_specs.md new file mode 100644 index 00000000..b3ec7ae0 --- /dev/null +++ b/docs/guides/metabase_specs.md @@ -0,0 +1,59 @@ +## Ожидаемые форматы входных данных (BMF-подобные) + +### Формат 1 – для скалярных данных + +В этом формате каждый измеренный параметр представлен отдельным полем внутри объекта. Поля могут быть сгруппированы по смысловым категориям (например, `job1_read`, `job1_cpu`). + +**Структура** + +- Корневой объект содержит произвольное количество категорий (например, `"job1_read"`, `"job1_cpu"`). +- Каждая категория – это объект, где ключи – названия метрик (например, `"io_bytes"`, `"lat_ns"`, `"usr_cpu"`). +- Каждая метрика – это объект с полями: + - `value` (обязательное) – числовое значение метрики. + - `lower_value` (опциональное) – нижняя граница доверительного интервала. + - `upper_value` (опциональное) – верхняя граница доверительного интервала. + +**Пример** + +```json +{ + "job1_read": { + "io_bytes": {"value": 10485760}, + "lat_ns": {"value": 6000, "lower_value": 3000, "upper_value": 15000} + }, + "job1_cpu": { + "usr_cpu": {"value": 12.5} + } +} +``` + +### Формат 2 – для векторных данных + +Этот формат используется для временных рядов или многократных измерений одной метрики. Все точки должны иметь одинаковые единицы измерения. + +**Структура** + +Корневой объект содержит следующие поля: + +- `benchmark` (строка, обязательное) – имя бенчмарка (например, `"fio"`, `"sysbench"`). +- `metric` (строка, обязательное) – название метрики (например, `"throughput_mb_s"`, `"latency_us"`). +- `points` (массив, обязательное) – список измерений, каждое измерение – объект с полями: + - `value` (число, обязательное) – значение метрики. + - `lower_value` (число, опциональное) – нижняя граница. + - `upper_value` (число, опциональное) – верхняя граница. + +**Пример** + +```json +{ + "benchmark": "fio", + "metric": "throughput_mb_s", + "series": "read", + "unit": "MB/s", + "sample_interval_sec": 10, + "points": [ + {"value": 123.4, "lower_value": 121.0, "upper_value": 126.5}, + {"value": 125.1, "lower_value": 122.3, "upper_value": 128.0} + ] +} +``` diff --git a/docs/i18n/README_ru.md b/docs/i18n/README_ru.md index fb1aa979..b09c94d8 100644 --- a/docs/i18n/README_ru.md +++ b/docs/i18n/README_ru.md @@ -11,15 +11,16 @@ ### Структура репозитория -| Папка | Описание | -|-------------------------|------------------------------------------| -| [conf](../../conf) | Конфигурационные файлы | -| [docker](../../docker) | Связанные с Docker файлы | -| [docs](../../docs) | Markdown документация репозитория | -| [layers](../../layers) | Содержимое слоёв (для Poky) | -| [scripts](../../scripts)| Shell скрипты | -| [src](../../src) | Исходный код и основные файлы разработки | -| [tests](../../tests) | Юнит тесты и другие | +| Папка | Описание | +|------------------------------------------------|------------------------------------------------| +| [conf](../../conf) | Конфигурационные файлы | +| [docker](../../docker) | Связанные с Docker файлы | +| [docs](../../docs) | Markdown документация репозитория | +| [layers](../../layers) | Содержимое слоёв (для Poky) | +| [metabase_prototype](../../metabase_prototype) | Файлы Metabase: запросы и синтетические данные | +| [scripts](../../scripts) | Shell скрипты | +| [src](../../src) | Исходный код и основные файлы разработки | +| [tests](../../tests) | Юнит тесты и другие | ### Методологии @@ -85,6 +86,10 @@ make docker-compose-up - Контейнер Victoria Metrics (порт:VMETRICS_PORT) собирает метрики из контейнеров Yocto и Suse-156, предоставляемых экспортерами узлов. +- Контейнер Metabase: (порт:METABASE_PORT) используется для создания запросов и панелей мониторинга с собранными метриками + +- Контейнер Metabase мета данных: (порт:METABASE_META_DB_PORT) необходим Metabase для сохранения настроек: запросов, панелей мониторинга, информации о подключении + Результаты могут быть получены из журналов контейнера Python после завершения всех тестов: ```bash diff --git a/docs/images/metabase-choose-db.png b/docs/images/metabase-choose-db.png new file mode 100644 index 00000000..91e44e5e Binary files /dev/null and b/docs/images/metabase-choose-db.png differ diff --git a/docs/images/metabase-connection-settings.png b/docs/images/metabase-connection-settings.png new file mode 100644 index 00000000..ecb44aa0 Binary files /dev/null and b/docs/images/metabase-connection-settings.png differ diff --git a/docs/images/metabase-create-collection.png b/docs/images/metabase-create-collection.png new file mode 100644 index 00000000..19a70ace Binary files /dev/null and b/docs/images/metabase-create-collection.png differ diff --git a/docs/images/metabase-create-dashboard.png b/docs/images/metabase-create-dashboard.png new file mode 100644 index 00000000..b7c05cda Binary files /dev/null and b/docs/images/metabase-create-dashboard.png differ diff --git a/docs/images/metabase-dashboard-add-chart.png b/docs/images/metabase-dashboard-add-chart.png new file mode 100644 index 00000000..67dcdd37 Binary files /dev/null and b/docs/images/metabase-dashboard-add-chart.png differ diff --git a/docs/images/metabase-dashboard-add-filter.png b/docs/images/metabase-dashboard-add-filter.png new file mode 100644 index 00000000..3344b765 Binary files /dev/null and b/docs/images/metabase-dashboard-add-filter.png differ diff --git a/docs/images/metabase-dashboard-place-chart.png b/docs/images/metabase-dashboard-place-chart.png new file mode 100644 index 00000000..9cedaa10 Binary files /dev/null and b/docs/images/metabase-dashboard-place-chart.png differ diff --git a/docs/images/metabase-data-permissions.png b/docs/images/metabase-data-permissions.png new file mode 100644 index 00000000..442ec5e5 Binary files /dev/null and b/docs/images/metabase-data-permissions.png differ diff --git a/docs/images/metabase-execute-query.png b/docs/images/metabase-execute-query.png new file mode 100644 index 00000000..5351701d Binary files /dev/null and b/docs/images/metabase-execute-query.png differ diff --git a/docs/images/metabase-landing.png b/docs/images/metabase-landing.png new file mode 100644 index 00000000..0eaf46f4 Binary files /dev/null and b/docs/images/metabase-landing.png differ diff --git a/docs/images/metabase-new-sql-query.png b/docs/images/metabase-new-sql-query.png new file mode 100644 index 00000000..512e8c90 Binary files /dev/null and b/docs/images/metabase-new-sql-query.png differ diff --git a/docs/images/metabase-query-settings.png b/docs/images/metabase-query-settings.png new file mode 100644 index 00000000..7e938fed Binary files /dev/null and b/docs/images/metabase-query-settings.png differ diff --git a/docs/images/metabase-set-filter.png b/docs/images/metabase-set-filter.png new file mode 100644 index 00000000..2d612b23 Binary files /dev/null and b/docs/images/metabase-set-filter.png differ diff --git a/docs/images/metabase-set-visualization.png b/docs/images/metabase-set-visualization.png new file mode 100644 index 00000000..6519ec77 Binary files /dev/null and b/docs/images/metabase-set-visualization.png differ diff --git a/docs/images/metabase-setup-chart.png b/docs/images/metabase-setup-chart.png new file mode 100644 index 00000000..19996601 Binary files /dev/null and b/docs/images/metabase-setup-chart.png differ diff --git a/docs/images/metabase-start-window.png b/docs/images/metabase-start-window.png new file mode 100644 index 00000000..be3ad660 Binary files /dev/null and b/docs/images/metabase-start-window.png differ diff --git a/docs/images/metabase-store-collection.png b/docs/images/metabase-store-collection.png new file mode 100644 index 00000000..eca549fd Binary files /dev/null and b/docs/images/metabase-store-collection.png differ diff --git a/docs/images/metabase-usage-purpose.png b/docs/images/metabase-usage-purpose.png new file mode 100644 index 00000000..7bb96c67 Binary files /dev/null and b/docs/images/metabase-usage-purpose.png differ diff --git a/docs/images/metabase-user-registration.png b/docs/images/metabase-user-registration.png new file mode 100644 index 00000000..2c0642b7 Binary files /dev/null and b/docs/images/metabase-user-registration.png differ diff --git a/docs/index.md b/docs/index.md index 26b6cc0e..d7407a87 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,6 +6,9 @@ - [Сборка минимального образа Yocto и его запуск в QEMU](./guides/yocto-qemu-minimal-image-guide.md) - [Тестирование образа Yocto](./guides/yocto-testing-guide.md) +- [Работа с metabase: формат данных](./guides/metabase_specs.md) +- [Работа с metabase: backup](./guides/metabase-backup-guide.md) +- [Работа с metabase: создание dashboard-ов](./guides/metabase-dashboard-creating-guide.md) - [Сборка образов, запуск тестов и просмотр результатов](./guides/testing-guide.md) ## 2. Методологии diff --git a/docs/utilities/visualization/metabase-features.md b/docs/utilities/visualization/metabase-features.md new file mode 100644 index 00000000..267f0bc7 --- /dev/null +++ b/docs/utilities/visualization/metabase-features.md @@ -0,0 +1,51 @@ +# Исследование Metabase на предмет фич + +## Поддержка построения графиков для нескольких источников временных рядов сразу (сравнение 2х и более функций) + +**Поддерживается**. Реализуется двумя механизмами: +- Вопросы с несколькими категориями. При группировке данных по категориям Metabase строит линейный график, где каждую категорию отображает собственная линия. +- Комбинирование нескольких вопросов на одной карточке. + +[Подробнее.](https://www.metabase.com/docs/v0.55/dashboards/multiple-series?use_case=ea) + +## Поддержка множества графиков для разных метрик + +**Поддерживается**. + +- На одном дашборде может располагаться несколько карточек, отображающих разные метрики и разные графики для метрик +- На дашбордах есть вкладки, позволяющие структурировать данные +- Metabase поддерживает множество видов отображения данных: таблицы, диаграммы, графики. Для каждой метрики возможно разное её отображение. + +## Поддержка построения таблиц на основе набора скалярных величин + +**Поддерживается**. Таблицы - базовый способ визуализации любых данных в Metabase и доступны без дополнительной настройки. + +## Поддержка сохранения отчетов (построенный набор графиков и таблиц) + +**Поддерживается** + +- Данные отдельных карточек можно экспортировать в различных форматах: .csv, .png, .json, .xlsx. +- Экспорт дашбордов в бесплатной версии возможен как экспорт вкладки в .pdf. +- В платной версии есть возможность экспорта в других разных форматах. +- Есть возможность делиться дашбордами по сети +- Для копирования дашбордов и всех данных конкретного инстанса Metabase можно делиться volumes или дампами БД Metabase. + +[Подробнее об экспорте дашбордов](https://www.metabase.com/docs/v0.51/questions/sharing/exporting-results?utm_campaign=newsletters-2024) + +## Поддержка свечных графиков + +**Ограниченно поддерживается** + +- В Metabase нет **свечных** графиков, однако есть **boxplot charts**, похожие на свечные графики. +- Для корректного использования boxplot графиков необходимо множество замеров одной и той же метрики: Metabase самостоятельно считает статистические величины и отрисовывает график. +- Возможности задавать заранее предрассчитанные статистические величины нет. + +## Возможность отрисовки на графиках специальных меток для указания событий в определенные моменты времени + +**Практически не поддерживается** + +- В Metabase существует отдельная сущность **Events**, которая создается и хранится в коллекции. +- Events отображаются на отдельной карточке вопроса и не отображаются на общем дашборде. +- Events создаются через UI вручную. Создавать Events автоматизированно и брать их из БД не предусмотрено. + +[Подробнее про Events](https://www.metabase.com/docs/latest/exploration-and-organization/events-and-timelines) diff --git a/metabase_prototype/.env b/metabase_prototype/.env new file mode 100644 index 00000000..bd5356b1 --- /dev/null +++ b/metabase_prototype/.env @@ -0,0 +1,14 @@ +POSTGRES_USER=admin +POSTGRES_PASSWORD=admin +POSTGRES_DB=metabase_app +MVP_RESULTS_DB=mvp_results +POSTGRES_PORT=5454 +POSTGRES_DATA_VOLUME=postgres_data + +METABASE_META_DB_PORT=5445 +METABASE_META_DB_NAME=metabase +METABASE_META_USER=metabase +METABASE_META_PASS=metabase +METABASE_META_VOLUME=metabase_meta_data +METABASE_PORT=3000 +METABASE_APP_VOLUME=metabase_app diff --git a/metabase_prototype/db/init/00_init.sh b/metabase_prototype/db/init/00_init.sh new file mode 100755 index 00000000..0154b9f8 --- /dev/null +++ b/metabase_prototype/db/init/00_init.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +set -euo pipefail + +echo "Creating MVP results database and loading schema..." + +psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <>'value')::double precision AS value, + NULLIF(meas.measure_obj->>'lower_value', '')::double precision AS lower_value, + NULLIF(meas.measure_obj->>'upper_value', '')::double precision AS upper_value, + NULLIF(meas.measure_obj->>'unit', '') AS unit +FROM raw_result rr +CROSS JOIN LATERAL jsonb_each(rr.payload) AS bench(benchmark, benchmark_obj) +CROSS JOIN LATERAL jsonb_each(bench.benchmark_obj) AS meas(measure, measure_obj) +WHERE rr.payload_kind = 'scalar' + AND jsonb_typeof(meas.measure_obj->'value') = 'number'; + +/* Helper extract view for vector JSON. */ + +CREATE OR REPLACE VIEW v_vector_raw_extract AS +SELECT + rr.raw_id, + rr.run_id, + COALESCE(rr.payload->>'benchmark', rr.tool) AS benchmark, + COALESCE(rr.payload->>'metric', rr.tool) AS measure, + COALESCE(rr.payload->>'series', 'default') AS series, + p.ordinality::integer AS point_idx, + (p.point_obj->>'value')::double precision AS value, + NULLIF(p.point_obj->>'lower_value', '')::double precision AS lower_value, + NULLIF(p.point_obj->>'upper_value', '')::double precision AS upper_value, + NULLIF(rr.payload->>'unit', '') AS unit +FROM raw_result rr +CROSS JOIN LATERAL jsonb_array_elements(rr.payload->'points') WITH ORDINALITY AS p(point_obj, ordinality) +WHERE rr.payload_kind = 'vector'; + +-- Views exposed to Metabase. +CREATE OR REPLACE VIEW v_scalar_metabase AS +SELECT + r.run_id, + r.started_at, + r.ended_at, + r.started_at::date AS run_date, + r.subsystem, + r.profile, + r.target_platform, + r.os_version, + rr.tool, + s.raw_id, + s.benchmark, + s.measure, + (s.benchmark || '.' || s.measure) AS metric_key, + s.value, + s.lower_value, + s.upper_value, + s.unit, + 'scalar'::text AS metric_type +FROM scalar_result s +JOIN raw_result rr ON rr.raw_id = s.raw_id +JOIN test_run r ON r.run_id = s.run_id; + +CREATE OR REPLACE VIEW v_vector_metabase AS +SELECT + r.run_id, + r.started_at, + r.ended_at, + r.started_at::date AS run_date, + r.subsystem, + r.profile, + r.target_platform, + r.os_version, + rr.tool, + v.raw_id, + v.benchmark, + v.measure, + (v.benchmark || '.' || v.measure) AS metric_key, + v.series, + v.point_idx, + (r.started_at + ((v.point_idx - 1) * COALESCE(NULLIF((rr.payload->>'sample_interval_sec'), '')::integer, 10) * INTERVAL '1 second')) AS point_ts, + v.value, + v.lower_value, + v.upper_value, + v.unit, + 'vector'::text AS metric_type +FROM vector_point v +JOIN raw_result rr ON rr.raw_id = v.raw_id +JOIN test_run r ON r.run_id = v.run_id; + +CREATE OR REPLACE VIEW v_all_metrics AS +SELECT + run_id, + started_at, + ended_at, + run_date, + subsystem, + profile, + target_platform, + os_version, + tool, + raw_id, + benchmark, + measure, + metric_key, + NULL::text AS series, + NULL::integer AS point_idx, + NULL::timestamptz AS point_ts, + value, + lower_value, + upper_value, + unit, + metric_type +FROM v_scalar_metabase +UNION ALL +SELECT + run_id, + started_at, + ended_at, + run_date, + subsystem, + profile, + target_platform, + os_version, + tool, + raw_id, + benchmark, + measure, + metric_key, + series, + point_idx, + point_ts, + value, + lower_value, + upper_value, + unit, + metric_type +FROM v_vector_metabase; + +CREATE OR REPLACE VIEW v_metric_catalog AS +SELECT DISTINCT + run_date, + subsystem, + profile, + target_platform, + os_version, + tool, + metric_type, + benchmark, + measure, + metric_key, + unit +FROM v_all_metrics; + +CREATE OR REPLACE VIEW v_scalar_boxplot AS +SELECT + subsystem, + profile, + target_platform, + os_version, + run_date, + tool, + benchmark, + measure, + metric_key, + unit, + COUNT(*) AS n, + percentile_cont(0.25) WITHIN GROUP (ORDER BY value) AS q1, + percentile_cont(0.50) WITHIN GROUP (ORDER BY value) AS median, + percentile_cont(0.75) WITHIN GROUP (ORDER BY value) AS q3, + MIN(value) AS min_value, + MAX(value) AS max_value, + AVG(value) AS avg_value, + stddev_samp(value) AS stddev_value +FROM v_scalar_metabase +GROUP BY 1,2,3,4,5,6,7,8,9,10; + +/* Synthetic performance and endurance data */ + +CREATE TABLE IF NOT EXISTS experiment ( + experiment_id integer NOT NULL, + config_id integer NOT NULL, + description character varying(100) NOT NULL, + type character varying(20), + started_at timestamp without time zone, + ended_at timestamp without time zone, + tests_total integer DEFAULT 0 NOT NULL, + tests_passed integer DEFAULT 0 NOT NULL, + tests_failed integer DEFAULT 0 NOT NULL, + tests_broken integer DEFAULT 0 NOT NULL, + tests_skipped integer DEFAULT 0 NOT NULL +); + +CREATE TABLE IF NOT EXISTS configuration ( + config_id integer NOT NULL, + os character varying(100) NOT NULL, + packages json NOT NULL, + core_info character varying(300) NOT NULL, + core_config json NOT NULL, + hardware json NOT NULL +); + +CREATE TABLE IF NOT EXISTS util_run_result ( + id integer NOT NULL, + experiment_id integer NOT NULL, + util_type character varying(20) NOT NULL, + command character varying NOT NULL, + result json NOT NULL, + description character varying(100) NOT NULL, + started_at timestamp without time zone, + ended_at timestamp without time zone +); diff --git a/metabase_prototype/db/init/02_data.sql b/metabase_prototype/db/init/02_data.sql new file mode 100644 index 00000000..39314b72 --- /dev/null +++ b/metabase_prototype/db/init/02_data.sql @@ -0,0 +1,693 @@ + +/* Initialize demo data for the JSON-first Metabase MVP */ +BEGIN; + +TRUNCATE TABLE run_event, vector_point, scalar_result, raw_result, test_run RESTART IDENTITY CASCADE; + +-- 1) Test runs +INSERT INTO test_run (run_id, subsystem, profile, target_platform, os_version, started_at, ended_at, notes) +VALUES (1, 'IO', 'fio-seq-read', 'x86-server-a', 'OS-1.0', '2026-03-10 10:00:00+00'::timestamptz, '2026-03-10 10:12:00+00'::timestamptz, 'fio demo run on x86/OS-1.0'); +INSERT INTO test_run (run_id, subsystem, profile, target_platform, os_version, started_at, ended_at, notes) +VALUES (2, 'IO', 'fio-seq-read', 'x86-server-a', 'OS-1.1', '2026-03-11 10:00:00+00'::timestamptz, '2026-03-11 10:12:00+00'::timestamptz, 'fio demo run on x86/OS-1.1'); +INSERT INTO test_run (run_id, subsystem, profile, target_platform, os_version, started_at, ended_at, notes) +VALUES (3, 'IO', 'fio-seq-read', 'arm-edge-b', 'OS-1.1', '2026-03-11 11:00:00+00'::timestamptz, '2026-03-11 11:12:00+00'::timestamptz, 'fio demo run on arm/OS-1.1'); +INSERT INTO test_run (run_id, subsystem, profile, target_platform, os_version, started_at, ended_at, notes) +VALUES (4, 'CPU', 'stress-ng-cpu', 'x86-server-a', 'OS-1.0', '2026-03-10 12:00:00+00'::timestamptz, '2026-03-10 12:01:00+00'::timestamptz, 'stress-ng cpu demo'); +INSERT INTO test_run (run_id, subsystem, profile, target_platform, os_version, started_at, ended_at, notes) +VALUES (5, 'Syscalls', 'stress-ng-syscall', 'arm-edge-b', 'OS-1.1', '2026-03-11 12:00:00+00'::timestamptz, '2026-03-11 12:01:00+00'::timestamptz, 'stress-ng syscall demo'); +INSERT INTO test_run (run_id, subsystem, profile, target_platform, os_version, started_at, ended_at, notes) +VALUES (6, 'Network', 'iperf3-tcp', 'x86-server-a', 'OS-1.1', '2026-03-12 09:00:00+00'::timestamptz, '2026-03-12 09:10:00+00'::timestamptz, 'iperf3 demo on x86/OS-1.1'); +INSERT INTO test_run (run_id, subsystem, profile, target_platform, os_version, started_at, ended_at, notes) +VALUES (7, 'Network', 'iperf3-tcp', 'arm-edge-b', 'OS-1.0', '2026-03-12 09:30:00+00'::timestamptz, '2026-03-12 09:40:00+00'::timestamptz, 'iperf3 demo on arm/OS-1.0'); + +-- 2) Raw JSON results +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (1, 'fio', 'scalar', $${"job1_read":{"io_bytes":{"value":10485760,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":52428800,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":5120,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":10240,"unit":"ops"},"slat_ns":{"value":2000,"lower_value":1000,"upper_value":5000,"unit":"ns"},"clat_ns":{"value":4000,"lower_value":2000,"upper_value":10000,"unit":"ns"},"lat_ns":{"value":6000,"lower_value":3000,"upper_value":15000,"unit":"ns"},"bw_mean":{"value":51200,"lower_value":50000,"upper_value":52000,"unit":"KiB/s"},"iops_mean":{"value":5000,"lower_value":4900,"upper_value":5100,"unit":"IOPS"}},"job1_write":{"io_bytes":{"value":5242880,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":26214400,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":2560,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":5120,"unit":"ops"},"slat_ns":{"value":2500,"lower_value":1500,"upper_value":5500,"unit":"ns"},"clat_ns":{"value":5000,"lower_value":2500,"upper_value":12000,"unit":"ns"},"lat_ns":{"value":7500,"lower_value":4000,"upper_value":17000,"unit":"ns"},"bw_mean":{"value":25600,"lower_value":25000,"upper_value":26000,"unit":"KiB/s"},"iops_mean":{"value":2500,"lower_value":2450,"upper_value":2550,"unit":"IOPS"}},"job1_cpu":{"usr_cpu":{"value":12.5,"unit":"%"},"sys_cpu":{"value":5.2,"unit":"%"},"ctx":{"value":15000,"unit":"ctx"}},"job2_read":{"io_bytes":{"value":20971520,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":104857600,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":10240,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":20480,"unit":"ops"},"slat_ns":{"value":1800,"lower_value":800,"upper_value":4500,"unit":"ns"},"clat_ns":{"value":3500,"lower_value":1800,"upper_value":9000,"unit":"ns"},"lat_ns":{"value":5300,"lower_value":2600,"upper_value":13000,"unit":"ns"},"bw_mean":{"value":102400,"lower_value":100000,"upper_value":104000,"unit":"KiB/s"},"iops_mean":{"value":10000,"lower_value":9800,"upper_value":10200,"unit":"IOPS"}},"job2_write":{"io_bytes":{"value":10485760,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":52428800,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":5120,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":10240,"unit":"ops"},"slat_ns":{"value":2200,"lower_value":1300,"upper_value":5200,"unit":"ns"},"clat_ns":{"value":4600,"lower_value":2200,"upper_value":11000,"unit":"ns"},"lat_ns":{"value":6800,"lower_value":3500,"upper_value":16000,"unit":"ns"},"bw_mean":{"value":51200,"lower_value":50000,"upper_value":52400,"unit":"KiB/s"},"iops_mean":{"value":5000,"lower_value":4900,"upper_value":5100,"unit":"IOPS"}},"job2_cpu":{"usr_cpu":{"value":15.0,"unit":"%"},"sys_cpu":{"value":6.1,"unit":"%"},"ctx":{"value":22000,"unit":"ctx"}}}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (1, 'fio', 'vector', $${"benchmark":"fio","metric":"throughput_mb_s","series":"read","unit":"MB/s","sample_interval_sec":10,"points":[{"value":235.0,"lower_value":232.5,"upper_value":238.2},{"value":236.389,"lower_value":233.889,"upper_value":239.589},{"value":237.713,"lower_value":235.213,"upper_value":240.913},{"value":238.915,"lower_value":236.415,"upper_value":242.115},{"value":239.949,"lower_value":237.449,"upper_value":243.149},{"value":240.792,"lower_value":238.292,"upper_value":243.992},{"value":241.437,"lower_value":238.937,"upper_value":244.637},{"value":241.902,"lower_value":239.402,"upper_value":245.102},{"value":242.223,"lower_value":239.723,"upper_value":245.423},{"value":242.454,"lower_value":239.954,"upper_value":245.654},{"value":242.657,"lower_value":240.157,"upper_value":245.857},{"value":242.898,"lower_value":240.398,"upper_value":246.098},{"value":243.238,"lower_value":240.738,"upper_value":246.438},{"value":243.728,"lower_value":241.228,"upper_value":246.928},{"value":244.402,"lower_value":241.902,"upper_value":247.602},{"value":245.274,"lower_value":242.774,"upper_value":248.474},{"value":246.336,"lower_value":243.836,"upper_value":249.536},{"value":247.559,"lower_value":245.059,"upper_value":250.759},{"value":248.897,"lower_value":246.397,"upper_value":252.097},{"value":250.29,"lower_value":247.79,"upper_value":253.49},{"value":251.673,"lower_value":249.173,"upper_value":254.873},{"value":252.983,"lower_value":250.483,"upper_value":256.183},{"value":254.161,"lower_value":251.661,"upper_value":257.361},{"value":255.169,"lower_value":252.669,"upper_value":258.369}]}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (2, 'fio', 'scalar', $${"job1_read":{"io_bytes":{"value":10485760,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":52428800,"unit":"B/s"},"bw":{"value":11200,"unit":"KiB/s"},"iops":{"value":5600,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":10240,"unit":"ops"},"slat_ns":{"value":2000,"lower_value":1000,"upper_value":5000,"unit":"ns"},"clat_ns":{"value":4000,"lower_value":2000,"upper_value":10000,"unit":"ns"},"lat_ns":{"value":5800,"lower_value":3000,"upper_value":15000,"unit":"ns"},"bw_mean":{"value":51200,"lower_value":50000,"upper_value":52000,"unit":"KiB/s"},"iops_mean":{"value":5000,"lower_value":4900,"upper_value":5100,"unit":"IOPS"}},"job1_write":{"io_bytes":{"value":5242880,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":26214400,"unit":"B/s"},"bw":{"value":10800,"unit":"KiB/s"},"iops":{"value":2700,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":5120,"unit":"ops"},"slat_ns":{"value":2500,"lower_value":1500,"upper_value":5500,"unit":"ns"},"clat_ns":{"value":5000,"lower_value":2500,"upper_value":12000,"unit":"ns"},"lat_ns":{"value":7500,"lower_value":4000,"upper_value":17000,"unit":"ns"},"bw_mean":{"value":25600,"lower_value":25000,"upper_value":26000,"unit":"KiB/s"},"iops_mean":{"value":2500,"lower_value":2450,"upper_value":2550,"unit":"IOPS"}},"job1_cpu":{"usr_cpu":{"value":11.8,"unit":"%"},"sys_cpu":{"value":5.2,"unit":"%"},"ctx":{"value":15000,"unit":"ctx"}},"job2_read":{"io_bytes":{"value":20971520,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":104857600,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":10650,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":20480,"unit":"ops"},"slat_ns":{"value":1800,"lower_value":800,"upper_value":4500,"unit":"ns"},"clat_ns":{"value":3500,"lower_value":1800,"upper_value":9000,"unit":"ns"},"lat_ns":{"value":5300,"lower_value":2600,"upper_value":13000,"unit":"ns"},"bw_mean":{"value":102400,"lower_value":100000,"upper_value":104000,"unit":"KiB/s"},"iops_mean":{"value":10000,"lower_value":9800,"upper_value":10200,"unit":"IOPS"}},"job2_write":{"io_bytes":{"value":10485760,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":52428800,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":5300,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":10240,"unit":"ops"},"slat_ns":{"value":2200,"lower_value":1300,"upper_value":5200,"unit":"ns"},"clat_ns":{"value":4600,"lower_value":2200,"upper_value":11000,"unit":"ns"},"lat_ns":{"value":6800,"lower_value":3500,"upper_value":16000,"unit":"ns"},"bw_mean":{"value":51200,"lower_value":50000,"upper_value":52400,"unit":"KiB/s"},"iops_mean":{"value":5000,"lower_value":4900,"upper_value":5100,"unit":"IOPS"}},"job2_cpu":{"usr_cpu":{"value":13.8,"unit":"%"},"sys_cpu":{"value":6.1,"unit":"%"},"ctx":{"value":22000,"unit":"ctx"}}}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (2, 'fio', 'vector', $${"benchmark":"fio","metric":"throughput_mb_s","series":"read","unit":"MB/s","sample_interval_sec":10,"points":[{"value":248.0,"lower_value":246.0,"upper_value":250.7},{"value":249.408,"lower_value":247.408,"upper_value":252.108},{"value":250.766,"lower_value":248.766,"upper_value":253.466},{"value":252.028,"lower_value":250.028,"upper_value":254.728},{"value":253.161,"lower_value":251.161,"upper_value":255.861},{"value":254.144,"lower_value":252.144,"upper_value":256.844},{"value":254.973,"lower_value":252.973,"upper_value":257.673},{"value":255.662,"lower_value":253.662,"upper_value":258.362},{"value":256.24,"lower_value":254.24,"upper_value":258.94},{"value":256.748,"lower_value":254.748,"upper_value":259.448},{"value":257.233,"lower_value":255.233,"upper_value":259.933},{"value":257.748,"lower_value":255.748,"upper_value":260.448},{"value":258.34,"lower_value":256.34,"upper_value":261.04},{"value":259.049,"lower_value":257.049,"upper_value":261.749},{"value":259.901,"lower_value":257.901,"upper_value":262.601},{"value":260.908,"lower_value":258.908,"upper_value":263.608},{"value":262.061,"lower_value":260.061,"upper_value":264.761},{"value":263.341,"lower_value":261.341,"upper_value":266.041},{"value":264.709,"lower_value":262.709,"upper_value":267.409},{"value":266.12,"lower_value":264.12,"upper_value":268.82},{"value":267.524,"lower_value":265.524,"upper_value":270.224},{"value":268.87,"lower_value":266.87,"upper_value":271.57},{"value":270.114,"lower_value":268.114,"upper_value":272.814},{"value":271.226,"lower_value":269.226,"upper_value":273.926}]}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (3, 'fio', 'scalar', $${"job1_read":{"io_bytes":{"value":10485760,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":52428800,"unit":"B/s"},"bw":{"value":9800,"unit":"KiB/s"},"iops":{"value":4700,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":10240,"unit":"ops"},"slat_ns":{"value":2000,"lower_value":1000,"upper_value":5000,"unit":"ns"},"clat_ns":{"value":4000,"lower_value":2000,"upper_value":10000,"unit":"ns"},"lat_ns":{"value":6900,"lower_value":3000,"upper_value":15000,"unit":"ns"},"bw_mean":{"value":51200,"lower_value":50000,"upper_value":52000,"unit":"KiB/s"},"iops_mean":{"value":5000,"lower_value":4900,"upper_value":5100,"unit":"IOPS"}},"job1_write":{"io_bytes":{"value":5242880,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":26214400,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":2560,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":5120,"unit":"ops"},"slat_ns":{"value":2500,"lower_value":1500,"upper_value":5500,"unit":"ns"},"clat_ns":{"value":5000,"lower_value":2500,"upper_value":12000,"unit":"ns"},"lat_ns":{"value":7500,"lower_value":4000,"upper_value":17000,"unit":"ns"},"bw_mean":{"value":25600,"lower_value":25000,"upper_value":26000,"unit":"KiB/s"},"iops_mean":{"value":2500,"lower_value":2450,"upper_value":2550,"unit":"IOPS"}},"job1_cpu":{"usr_cpu":{"value":14.2,"unit":"%"},"sys_cpu":{"value":5.2,"unit":"%"},"ctx":{"value":15000,"unit":"ctx"}},"job2_read":{"io_bytes":{"value":20971520,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":104857600,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":9400,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":20480,"unit":"ops"},"slat_ns":{"value":1800,"lower_value":800,"upper_value":4500,"unit":"ns"},"clat_ns":{"value":3500,"lower_value":1800,"upper_value":9000,"unit":"ns"},"lat_ns":{"value":5300,"lower_value":2600,"upper_value":13000,"unit":"ns"},"bw_mean":{"value":102400,"lower_value":100000,"upper_value":104000,"unit":"KiB/s"},"iops_mean":{"value":10000,"lower_value":9800,"upper_value":10200,"unit":"IOPS"}},"job2_write":{"io_bytes":{"value":10485760,"unit":"B"},"io_kbytes":{"value":1024000,"unit":"kB"},"bw_bytes":{"value":52428800,"unit":"B/s"},"bw":{"value":10240,"unit":"KiB/s"},"iops":{"value":5120,"unit":"IOPS"},"runtime":{"value":200,"unit":"ms"},"total_ios":{"value":10240,"unit":"ops"},"slat_ns":{"value":2200,"lower_value":1300,"upper_value":5200,"unit":"ns"},"clat_ns":{"value":4600,"lower_value":2200,"upper_value":11000,"unit":"ns"},"lat_ns":{"value":6800,"lower_value":3500,"upper_value":16000,"unit":"ns"},"bw_mean":{"value":51200,"lower_value":50000,"upper_value":52400,"unit":"KiB/s"},"iops_mean":{"value":5000,"lower_value":4900,"upper_value":5100,"unit":"IOPS"}},"job2_cpu":{"usr_cpu":{"value":16.5,"unit":"%"},"sys_cpu":{"value":6.1,"unit":"%"},"ctx":{"value":22000,"unit":"ctx"}}}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (3, 'fio', 'vector', $${"benchmark":"fio","metric":"throughput_mb_s","series":"read","unit":"MB/s","sample_interval_sec":10,"points":[{"value":220.0,"lower_value":217.2,"upper_value":223.5},{"value":221.354,"lower_value":218.554,"upper_value":224.854},{"value":222.637,"lower_value":219.837,"upper_value":226.137},{"value":223.783,"lower_value":220.983,"upper_value":227.283},{"value":224.744,"lower_value":221.944,"upper_value":228.244},{"value":225.491,"lower_value":222.691,"upper_value":228.991},{"value":226.019,"lower_value":223.219,"upper_value":229.519},{"value":226.346,"lower_value":223.546,"upper_value":229.846},{"value":226.515,"lower_value":223.715,"upper_value":230.015},{"value":226.582,"lower_value":223.782,"upper_value":230.082},{"value":226.619,"lower_value":223.819,"upper_value":230.119},{"value":226.697,"lower_value":223.897,"upper_value":230.197},{"value":226.886,"lower_value":224.086,"upper_value":230.386},{"value":227.242,"lower_value":224.442,"upper_value":230.742},{"value":227.802,"lower_value":225.002,"upper_value":231.302},{"value":228.582,"lower_value":225.782,"upper_value":232.082},{"value":229.573,"lower_value":226.773,"upper_value":233.073},{"value":230.744,"lower_value":227.944,"upper_value":234.244},{"value":232.041,"lower_value":229.241,"upper_value":235.541},{"value":233.4,"lower_value":230.6,"upper_value":236.9},{"value":234.748,"lower_value":231.948,"upper_value":238.248},{"value":236.014,"lower_value":233.214,"upper_value":239.514},{"value":237.135,"lower_value":234.335,"upper_value":240.635},{"value":238.065,"lower_value":235.265,"upper_value":241.565}]}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (4, 'stress-ng', 'scalar', $${"StressNGMetrics":{"stressor":{"value":"cpu"},"bogo_ops":{"value":123456,"unit":"ops"},"real_time_secs":{"value":60.0,"unit":"s"},"usr_time_secs":{"value":55.5,"unit":"s"},"sys_time_secs":{"value":4.5,"unit":"s"},"bogo_ops_s_real_time":{"value":2057.6,"unit":"ops/s"},"bogo_ops_s_usr_sys_time":{"value":2060.0,"unit":"ops/s"},"cpu_used_per_instance":{"value":100.0,"unit":"%"},"rss_max_kb":{"value":10240,"unit":"kB"}},"top10_slowest":{"gettimeofday":{"value":1000.0,"lower_value":800.0,"upper_value":1200.0,"unit":"ns"},"clock_gettime":{"value":950.0,"lower_value":760.0,"upper_value":1100.0,"unit":"ns"},"sched_yield":{"value":1400.0,"lower_value":1200.0,"upper_value":1700.0,"unit":"ns"},"futex":{"value":1800.0,"lower_value":1500.0,"upper_value":2200.0,"unit":"ns"},"madvise":{"value":1650.0,"lower_value":1400.0,"upper_value":2000.0,"unit":"ns"}}}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (4, 'stress-ng', 'vector', $${"benchmark":"stress-ng","metric":"cpu_utilization_percent","series":"cpu","unit":"%","sample_interval_sec":10,"points":[{"value":92.0,"lower_value":91.1,"upper_value":93.1},{"value":92.512,"lower_value":91.612,"upper_value":93.612},{"value":92.995,"lower_value":92.095,"upper_value":94.095},{"value":93.423,"lower_value":92.523,"upper_value":94.523},{"value":93.778,"lower_value":92.878,"upper_value":94.878},{"value":94.046,"lower_value":93.146,"upper_value":95.146},{"value":94.227,"lower_value":93.327,"upper_value":95.327},{"value":94.328,"lower_value":93.428,"upper_value":95.428},{"value":94.366,"lower_value":93.466,"upper_value":95.466},{"value":94.363,"lower_value":93.463,"upper_value":95.463},{"value":94.348,"lower_value":93.448,"upper_value":95.448},{"value":94.349,"lower_value":93.449,"upper_value":95.449},{"value":94.395,"lower_value":93.495,"upper_value":95.495},{"value":94.507,"lower_value":93.607,"upper_value":95.607},{"value":94.701,"lower_value":93.801,"upper_value":95.801},{"value":94.983,"lower_value":94.083,"upper_value":96.083},{"value":95.349,"lower_value":94.449,"upper_value":96.449},{"value":95.787,"lower_value":94.887,"upper_value":96.887}]}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (5, 'stress-ng', 'scalar', $${"StressNGMetrics":{"stressor":{"value":"syscall"},"bogo_ops":{"value":98765,"unit":"ops"},"real_time_secs":{"value":60.0,"unit":"s"},"usr_time_secs":{"value":51.2,"unit":"s"},"sys_time_secs":{"value":8.8,"unit":"s"},"bogo_ops_s_real_time":{"value":1646.0,"unit":"ops/s"},"bogo_ops_s_usr_sys_time":{"value":1652.3,"unit":"ops/s"},"cpu_used_per_instance":{"value":96.0,"unit":"%"},"rss_max_kb":{"value":12288,"unit":"kB"}},"top10_slowest":{"openat":{"value":2100.0,"lower_value":1800.0,"upper_value":2600.0,"unit":"ns"},"read":{"value":2300.0,"lower_value":1900.0,"upper_value":2800.0,"unit":"ns"},"write":{"value":2500.0,"lower_value":2100.0,"upper_value":3000.0,"unit":"ns"},"stat":{"value":1900.0,"lower_value":1500.0,"upper_value":2400.0,"unit":"ns"},"fstat":{"value":1750.0,"lower_value":1300.0,"upper_value":2200.0,"unit":"ns"}}}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (5, 'stress-ng', 'vector', $${"benchmark":"stress-ng","metric":"syscall_latency_ns","series":"syscall","unit":"ns","sample_interval_sec":10,"points":[{"value":2400.0,"lower_value":2330.0,"upper_value":2520.0},{"value":2395.088,"lower_value":2325.088,"upper_value":2515.088},{"value":2388.735,"lower_value":2318.735,"upper_value":2508.735},{"value":2379.659,"lower_value":2309.659,"upper_value":2499.659},{"value":2366.878,"lower_value":2296.878,"upper_value":2486.878},{"value":2349.816,"lower_value":2279.816,"upper_value":2469.816},{"value":2328.372,"lower_value":2258.372,"upper_value":2448.372},{"value":2302.923,"lower_value":2232.923,"upper_value":2422.923},{"value":2274.291,"lower_value":2204.291,"upper_value":2394.291},{"value":2243.645,"lower_value":2173.645,"upper_value":2363.645},{"value":2212.377,"lower_value":2142.377,"upper_value":2332.377},{"value":2181.949,"lower_value":2111.949,"upper_value":2301.949},{"value":2153.728,"lower_value":2083.728,"upper_value":2273.728},{"value":2128.839,"lower_value":2058.839,"upper_value":2248.839},{"value":2108.042,"lower_value":2038.042,"upper_value":2228.042},{"value":2091.643,"lower_value":2021.643,"upper_value":2211.643},{"value":2079.467,"lower_value":2009.467,"upper_value":2199.467},{"value":2070.872,"lower_value":2000.872,"upper_value":2190.872}]}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (6, 'iperf3', 'scalar', $${"sum":{"seconds":{"value":10.0,"unit":"s"},"bytes":{"value":104857600,"unit":"B"},"bits_per_second":{"value":83886080,"unit":"bps"}},"cpu_utilization_percent":{"host_total":{"value":15.5,"unit":"%"},"host_user":{"value":10.0,"unit":"%"},"host_system":{"value":5.5,"unit":"%"}}}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (6, 'iperf3', 'vector', $${"benchmark":"iperf3","metric":"bits_per_second","series":"sum","unit":"bps","sample_interval_sec":10,"points":[{"value":82000000.0,"lower_value":81500000.0,"upper_value":82750000.0},{"value":82294518.144,"lower_value":81794518.144,"upper_value":83044518.144},{"value":82576429.431,"lower_value":82076429.431,"upper_value":83326429.431},{"value":82834514.845,"lower_value":82334514.845,"upper_value":83584514.845},{"value":83060178.265,"lower_value":82560178.265,"upper_value":83810178.265},{"value":83248392.785,"lower_value":82748392.785,"upper_value":83998392.785},{"value":83398254.099,"lower_value":82898254.099,"upper_value":84148254.099},{"value":83513080.059,"lower_value":83013080.059,"upper_value":84263080.059},{"value":83600045.419,"lower_value":83100045.419,"upper_value":84350045.419},{"value":83669392.003,"lower_value":83169392.003,"upper_value":84419392.003},{"value":83733301.213,"lower_value":83233301.213,"upper_value":84483301.213},{"value":83804553.033,"lower_value":83304553.033,"upper_value":84554553.033},{"value":83895119.127,"lower_value":83395119.127,"upper_value":84645119.127},{"value":84014844.925,"lower_value":83514844.925,"upper_value":84764844.925},{"value":84170365.779,"lower_value":83670365.779,"upper_value":84920365.779},{"value":84364376.504,"lower_value":83864376.504,"upper_value":85114376.504},{"value":84595334.713,"lower_value":84095334.713,"upper_value":85345334.713},{"value":84857630.615,"lower_value":84357630.615,"upper_value":85607630.615},{"value":85142204.576,"lower_value":84642204.576,"upper_value":85892204.576},{"value":85437544.453,"lower_value":84937544.453,"upper_value":86187544.453},{"value":85730952.931,"lower_value":85230952.931,"upper_value":86480952.931},{"value":86009945.31,"lower_value":85509945.31,"upper_value":86759945.31},{"value":86263623.904,"lower_value":85763623.904,"upper_value":87013623.904},{"value":86483877.725,"lower_value":85983877.725,"upper_value":87233877.725}]}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (7, 'iperf3', 'scalar', $${"sum":{"seconds":{"value":10.0,"unit":"s"},"bytes":{"value":100663296,"unit":"B"},"bits_per_second":{"value":80530636,"unit":"bps"}},"cpu_utilization_percent":{"host_total":{"value":18.2,"unit":"%"},"host_user":{"value":11.7,"unit":"%"},"host_system":{"value":6.5,"unit":"%"}}}$$::jsonb); +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES (7, 'iperf3', 'vector', $${"benchmark":"iperf3","metric":"bits_per_second","series":"sum","unit":"bps","sample_interval_sec":10,"points":[{"value":76000000.0,"lower_value":75400000.0,"upper_value":76860000.0},{"value":76257421.773,"lower_value":75657421.773,"upper_value":77117421.773},{"value":76499715.317,"lower_value":75899715.317,"upper_value":77359715.317},{"value":76713417.814,"lower_value":76113417.814,"upper_value":77573417.814},{"value":76888213.919,"lower_value":76288213.919,"upper_value":77748213.919},{"value":77018071.342,"lower_value":76418071.342,"upper_value":77878071.342},{"value":77101904.919,"lower_value":76501904.919,"upper_value":77961904.919},{"value":77143696.07,"lower_value":76543696.07,"upper_value":78003696.07},{"value":77152054.503,"lower_value":76552054.503,"upper_value":78012054.503},{"value":77139270.403,"lower_value":76539270.403,"upper_value":77999270.403},{"value":77119961.456,"lower_value":76519961.456,"upper_value":77979961.456},{"value":77109463.64,"lower_value":76509463.64,"upper_value":77969463.64},{"value":77122142.952,"lower_value":76522142.952,"upper_value":77982142.952},{"value":77169813.909,"lower_value":76569813.909,"upper_value":78029813.909},{"value":77260438.935,"lower_value":76660438.935,"upper_value":78120438.935},{"value":77397251.805,"lower_value":76797251.805,"upper_value":78257251.805},{"value":77578401.656,"lower_value":76978401.656,"upper_value":78438401.656},{"value":77797156.738,"lower_value":77197156.738,"upper_value":78657156.738},{"value":78042645.491,"lower_value":77442645.491,"upper_value":78902645.491},{"value":78301053.344,"lower_value":77701053.344,"upper_value":79161053.344},{"value":78557143.517,"lower_value":77957143.517,"upper_value":79417143.517},{"value":78795934.371,"lower_value":78195934.371,"upper_value":79655934.371},{"value":79004348.685,"lower_value":78404348.685,"upper_value":79864348.685},{"value":79172653.271,"lower_value":78572653.271,"upper_value":80032653.271}]}$$::jsonb); + +-- run_id = 1 (x86-server-a, OS-1.0) +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(1, 'fio', 'vector', $${"benchmark":"fio","metric":"iops","series":"read","unit":"IOPS","sample_interval_sec":10,"points":[{"value":5120,"lower_value":5080,"upper_value":5160},{"value":5135,"lower_value":5095,"upper_value":5175},{"value":5148,"lower_value":5108,"upper_value":5188},{"value":5159,"lower_value":5119,"upper_value":5199},{"value":5168,"lower_value":5128,"upper_value":5208},{"value":5175,"lower_value":5135,"upper_value":5215},{"value":5180,"lower_value":5140,"upper_value":5220},{"value":5183,"lower_value":5143,"upper_value":5223},{"value":5185,"lower_value":5145,"upper_value":5225},{"value":5186,"lower_value":5146,"upper_value":5226},{"value":5187,"lower_value":5147,"upper_value":5227},{"value":5188,"lower_value":5148,"upper_value":5228},{"value":5190,"lower_value":5150,"upper_value":5230},{"value":5193,"lower_value":5153,"upper_value":5233},{"value":5197,"lower_value":5157,"upper_value":5237},{"value":5202,"lower_value":5162,"upper_value":5242},{"value":5208,"lower_value":5168,"upper_value":5248},{"value":5215,"lower_value":5175,"upper_value":5255},{"value":5223,"lower_value":5183,"upper_value":5263},{"value":5232,"lower_value":5192,"upper_value":5272},{"value":5241,"lower_value":5201,"upper_value":5281},{"value":5250,"lower_value":5210,"upper_value":5290},{"value":5258,"lower_value":5218,"upper_value":5298},{"value":5265,"lower_value":5225,"upper_value":5305} +]}$$::jsonb); + +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(1, 'fio', 'vector', $${"benchmark":"fio","metric":"latency_us","series":"read","unit":"us","sample_interval_sec":10,"points":[{"value":125,"lower_value":120,"upper_value":130},{"value":124.2,"lower_value":119.2,"upper_value":129.2},{"value":123.5,"lower_value":118.5,"upper_value":128.5},{"value":122.9,"lower_value":117.9,"upper_value":127.9},{"value":122.4,"lower_value":117.4,"upper_value":127.4},{"value":122.0,"lower_value":117.0,"upper_value":127.0},{"value":121.7,"lower_value":116.7,"upper_value":126.7},{"value":121.5,"lower_value":116.5,"upper_value":126.5},{"value":121.4,"lower_value":116.4,"upper_value":126.4},{"value":121.4,"lower_value":116.4,"upper_value":126.4},{"value":121.5,"lower_value":116.5,"upper_value":126.5},{"value":121.7,"lower_value":116.7,"upper_value":126.7},{"value":122.0,"lower_value":117.0,"upper_value":127.0},{"value":122.4,"lower_value":117.4,"upper_value":127.4},{"value":122.9,"lower_value":117.9,"upper_value":127.9},{"value":123.5,"lower_value":118.5,"upper_value":128.5},{"value":124.2,"lower_value":119.2,"upper_value":129.2},{"value":125.0,"lower_value":120.0,"upper_value":130.0},{"value":125.9,"lower_value":120.9,"upper_value":130.9},{"value":126.9,"lower_value":121.9,"upper_value":131.9},{"value":128.0,"lower_value":123.0,"upper_value":133.0},{"value":129.2,"lower_value":124.2,"upper_value":134.2},{"value":130.5,"lower_value":125.5,"upper_value":135.5},{"value":131.9,"lower_value":126.9,"upper_value":136.9} +]}$$::jsonb); + +-- run_id = 2 (x86-server-a, OS-1.1) +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(2, 'fio', 'vector', $${"benchmark":"fio","metric":"iops","series":"read","unit":"IOPS","sample_interval_sec":10,"points":[{"value":5600,"lower_value":5550,"upper_value":5650},{"value":5620,"lower_value":5570,"upper_value":5670},{"value":5638,"lower_value":5588,"upper_value":5688},{"value":5654,"lower_value":5604,"upper_value":5704},{"value":5668,"lower_value":5618,"upper_value":5718},{"value":5680,"lower_value":5630,"upper_value":5730},{"value":5690,"lower_value":5640,"upper_value":5740},{"value":5698,"lower_value":5648,"upper_value":5748},{"value":5704,"lower_value":5654,"upper_value":5754},{"value":5708,"lower_value":5658,"upper_value":5758},{"value":5710,"lower_value":5660,"upper_value":5760},{"value":5710,"lower_value":5660,"upper_value":5760},{"value":5708,"lower_value":5658,"upper_value":5758},{"value":5704,"lower_value":5654,"upper_value":5754},{"value":5698,"lower_value":5648,"upper_value":5748},{"value":5690,"lower_value":5640,"upper_value":5740},{"value":5680,"lower_value":5630,"upper_value":5730},{"value":5668,"lower_value":5618,"upper_value":5718},{"value":5654,"lower_value":5604,"upper_value":5704},{"value":5638,"lower_value":5588,"upper_value":5688},{"value":5620,"lower_value":5570,"upper_value":5670},{"value":5600,"lower_value":5550,"upper_value":5650},{"value":5578,"lower_value":5528,"upper_value":5628},{"value":5554,"lower_value":5504,"upper_value":5604} +]}$$::jsonb); + +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(2, 'fio', 'vector', $${"benchmark":"fio","metric":"latency_us","series":"read","unit":"us","sample_interval_sec":10,"points":[{"value":110,"lower_value":105,"upper_value":115},{"value":109.2,"lower_value":104.2,"upper_value":114.2},{"value":108.5,"lower_value":103.5,"upper_value":113.5},{"value":107.9,"lower_value":102.9,"upper_value":112.9},{"value":107.4,"lower_value":102.4,"upper_value":112.4},{"value":107.0,"lower_value":102.0,"upper_value":112.0},{"value":106.7,"lower_value":101.7,"upper_value":111.7},{"value":106.5,"lower_value":101.5,"upper_value":111.5},{"value":106.4,"lower_value":101.4,"upper_value":111.4},{"value":106.4,"lower_value":101.4,"upper_value":111.4},{"value":106.5,"lower_value":101.5,"upper_value":111.5},{"value":106.7,"lower_value":101.7,"upper_value":111.7},{"value":107.0,"lower_value":102.0,"upper_value":112.0},{"value":107.4,"lower_value":102.4,"upper_value":112.4},{"value":107.9,"lower_value":102.9,"upper_value":112.9},{"value":108.5,"lower_value":103.5,"upper_value":113.5},{"value":109.2,"lower_value":104.2,"upper_value":114.2},{"value":110.0,"lower_value":105.0,"upper_value":115.0},{"value":110.9,"lower_value":105.9,"upper_value":115.9},{"value":111.9,"lower_value":106.9,"upper_value":116.9},{"value":113.0,"lower_value":108.0,"upper_value":118.0},{"value":114.2,"lower_value":109.2,"upper_value":119.2},{"value":115.5,"lower_value":110.5,"upper_value":120.5},{"value":116.9,"lower_value":111.9,"upper_value":121.9} +]}$$::jsonb); + +-- run_id = 3 (arm-edge-b, OS-1.1) +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(3, 'fio', 'vector', $${"benchmark":"fio","metric":"iops","series":"read","unit":"IOPS","sample_interval_sec":10,"points":[{"value":4700,"lower_value":4650,"upper_value":4750},{"value":4715,"lower_value":4665,"upper_value":4765},{"value":4728,"lower_value":4678,"upper_value":4778},{"value":4739,"lower_value":4689,"upper_value":4789},{"value":4748,"lower_value":4698,"upper_value":4798},{"value":4755,"lower_value":4705,"upper_value":4805},{"value":4760,"lower_value":4710,"upper_value":4810},{"value":4763,"lower_value":4713,"upper_value":4813},{"value":4765,"lower_value":4715,"upper_value":4815},{"value":4766,"lower_value":4716,"upper_value":4816},{"value":4767,"lower_value":4717,"upper_value":4817},{"value":4768,"lower_value":4718,"upper_value":4818},{"value":4770,"lower_value":4720,"upper_value":4820},{"value":4773,"lower_value":4723,"upper_value":4823},{"value":4777,"lower_value":4727,"upper_value":4827},{"value":4782,"lower_value":4732,"upper_value":4832},{"value":4788,"lower_value":4738,"upper_value":4838},{"value":4795,"lower_value":4745,"upper_value":4845},{"value":4803,"lower_value":4753,"upper_value":4853},{"value":4812,"lower_value":4762,"upper_value":4862},{"value":4821,"lower_value":4771,"upper_value":4871},{"value":4830,"lower_value":4780,"upper_value":4880},{"value":4838,"lower_value":4788,"upper_value":4888},{"value":4845,"lower_value":4795,"upper_value":4895} +]}$$::jsonb); + +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(3, 'fio', 'vector', $${"benchmark":"fio","metric":"latency_us","series":"read","unit":"us","sample_interval_sec":10,"points":[{"value":145,"lower_value":140,"upper_value":150},{"value":144.2,"lower_value":139.2,"upper_value":149.2},{"value":143.5,"lower_value":138.5,"upper_value":148.5},{"value":142.9,"lower_value":137.9,"upper_value":147.9},{"value":142.4,"lower_value":137.4,"upper_value":147.4},{"value":142.0,"lower_value":137.0,"upper_value":147.0},{"value":141.7,"lower_value":136.7,"upper_value":146.7},{"value":141.5,"lower_value":136.5,"upper_value":146.5},{"value":141.4,"lower_value":136.4,"upper_value":146.4},{"value":141.4,"lower_value":136.4,"upper_value":146.4},{"value":141.5,"lower_value":136.5,"upper_value":146.5},{"value":141.7,"lower_value":136.7,"upper_value":146.7},{"value":142.0,"lower_value":137.0,"upper_value":147.0},{"value":142.4,"lower_value":137.4,"upper_value":147.4},{"value":142.9,"lower_value":137.9,"upper_value":147.9},{"value":143.5,"lower_value":138.5,"upper_value":148.5},{"value":144.2,"lower_value":139.2,"upper_value":149.2},{"value":145.0,"lower_value":140.0,"upper_value":150.0},{"value":145.9,"lower_value":140.9,"upper_value":150.9},{"value":146.9,"lower_value":141.9,"upper_value":151.9},{"value":148.0,"lower_value":143.0,"upper_value":153.0},{"value":149.2,"lower_value":144.2,"upper_value":154.2},{"value":150.5,"lower_value":145.5,"upper_value":155.5},{"value":151.9,"lower_value":146.9,"upper_value":156.9} +]}$$::jsonb); + +-- run_id = 4 (stress-ng-cpu) +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(4, 'stress-ng', 'vector', $${"benchmark":"stress-ng","metric":"temperature_celsius","series":"cpu","unit":"°C","sample_interval_sec":10,"points":[{"value":55.2,"lower_value":54.5,"upper_value":55.9},{"value":56.1,"lower_value":55.4,"upper_value":56.8},{"value":56.9,"lower_value":56.2,"upper_value":57.6},{"value":57.6,"lower_value":56.9,"upper_value":58.3},{"value":58.2,"lower_value":57.5,"upper_value":58.9},{"value":58.7,"lower_value":58.0,"upper_value":59.4},{"value":59.1,"lower_value":58.4,"upper_value":59.8},{"value":59.4,"lower_value":58.7,"upper_value":60.1},{"value":59.6,"lower_value":58.9,"upper_value":60.3},{"value":59.7,"lower_value":59.0,"upper_value":60.4},{"value":59.7,"lower_value":59.0,"upper_value":60.4},{"value":59.6,"lower_value":58.9,"upper_value":60.3},{"value":59.4,"lower_value":58.7,"upper_value":60.1},{"value":59.1,"lower_value":58.4,"upper_value":59.8},{"value":58.7,"lower_value":58.0,"upper_value":59.4},{"value":58.2,"lower_value":57.5,"upper_value":58.9},{"value":57.6,"lower_value":56.9,"upper_value":58.3},{"value":56.9,"lower_value":56.2,"upper_value":57.6} +]}$$::jsonb); + +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(4, 'stress-ng', 'vector', $${"benchmark":"stress-ng","metric":"context_switches_per_sec","series":"system","unit":"ctx/s","sample_interval_sec":10,"points":[{"value":12500,"lower_value":12300,"upper_value":12700},{"value":12650,"lower_value":12450,"upper_value":12850},{"value":12790,"lower_value":12590,"upper_value":12990},{"value":12920,"lower_value":12720,"upper_value":13120},{"value":13040,"lower_value":12840,"upper_value":13240},{"value":13150,"lower_value":12950,"upper_value":13350},{"value":13250,"lower_value":13050,"upper_value":13450},{"value":13340,"lower_value":13140,"upper_value":13540},{"value":13420,"lower_value":13220,"upper_value":13620},{"value":13490,"lower_value":13290,"upper_value":13690},{"value":13550,"lower_value":13350,"upper_value":13750},{"value":13600,"lower_value":13400,"upper_value":13800},{"value":13640,"lower_value":13440,"upper_value":13840},{"value":13670,"lower_value":13470,"upper_value":13870},{"value":13690,"lower_value":13490,"upper_value":13890},{"value":13700,"lower_value":13500,"upper_value":13900},{"value":13700,"lower_value":13500,"upper_value":13900},{"value":13690,"lower_value":13490,"upper_value":13890} +]}$$::jsonb); + +-- run_id = 5 (stress-ng-syscall) +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(5, 'stress-ng', 'vector', $${"benchmark":"stress-ng","metric":"page_faults_per_sec","series":"syscall","unit":"faults/s","sample_interval_sec":10,"points":[{"value":4500,"lower_value":4450,"upper_value":4550},{"value":4520,"lower_value":4470,"upper_value":4570},{"value":4538,"lower_value":4488,"upper_value":4588},{"value":4554,"lower_value":4504,"upper_value":4604},{"value":4568,"lower_value":4518,"upper_value":4618},{"value":4580,"lower_value":4530,"upper_value":4630},{"value":4590,"lower_value":4540,"upper_value":4640},{"value":4598,"lower_value":4548,"upper_value":4648},{"value":4604,"lower_value":4554,"upper_value":4654},{"value":4608,"lower_value":4558,"upper_value":4658},{"value":4610,"lower_value":4560,"upper_value":4660},{"value":4610,"lower_value":4560,"upper_value":4660},{"value":4608,"lower_value":4558,"upper_value":4658},{"value":4604,"lower_value":4554,"upper_value":4654},{"value":4598,"lower_value":4548,"upper_value":4648},{"value":4590,"lower_value":4540,"upper_value":4640},{"value":4580,"lower_value":4530,"upper_value":4630},{"value":4568,"lower_value":4518,"upper_value":4618} +]}$$::jsonb); + +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(5, 'stress-ng', 'vector', $${"benchmark":"stress-ng","metric":"syscall_throughput","series":"syscall","unit":"ops/s","sample_interval_sec":10,"points":[{"value":16500,"lower_value":16300,"upper_value":16700},{"value":16580,"lower_value":16380,"upper_value":16780},{"value":16650,"lower_value":16450,"upper_value":16850},{"value":16710,"lower_value":16510,"upper_value":16910},{"value":16760,"lower_value":16560,"upper_value":16960},{"value":16800,"lower_value":16600,"upper_value":17000},{"value":16830,"lower_value":16630,"upper_value":17030},{"value":16850,"lower_value":16650,"upper_value":17050},{"value":16860,"lower_value":16660,"upper_value":17060},{"value":16860,"lower_value":16660,"upper_value":17060},{"value":16850,"lower_value":16650,"upper_value":17050},{"value":16830,"lower_value":16630,"upper_value":17030},{"value":16800,"lower_value":16600,"upper_value":17000},{"value":16760,"lower_value":16560,"upper_value":16960},{"value":16710,"lower_value":16510,"upper_value":16910},{"value":16650,"lower_value":16450,"upper_value":16850},{"value":16580,"lower_value":16380,"upper_value":16780},{"value":16500,"lower_value":16300,"upper_value":16700} +]}$$::jsonb); + +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(6, 'iperf3', 'vector', $${"benchmark":"iperf3","metric":"jitter_ms","series":"sum","unit":"ms","sample_interval_sec":10,"points":[{"value":0.02,"lower_value":0.019,"upper_value":0.021},{"value":0.021,"lower_value":0.02,"upper_value":0.022},{"value":0.022,"lower_value":0.021,"upper_value":0.023},{"value":0.023,"lower_value":0.022,"upper_value":0.024},{"value":0.024,"lower_value":0.023,"upper_value":0.025},{"value":0.025,"lower_value":0.024,"upper_value":0.026},{"value":0.026,"lower_value":0.025,"upper_value":0.027},{"value":0.027,"lower_value":0.026,"upper_value":0.028},{"value":0.028,"lower_value":0.027,"upper_value":0.029},{"value":0.029,"lower_value":0.028,"upper_value":0.03},{"value":0.03,"lower_value":0.029,"upper_value":0.031},{"value":0.031,"lower_value":0.03,"upper_value":0.032},{"value":0.032,"lower_value":0.031,"upper_value":0.033},{"value":0.033,"lower_value":0.032,"upper_value":0.034},{"value":0.034,"lower_value":0.033,"upper_value":0.035},{"value":0.035,"lower_value":0.034,"upper_value":0.036},{"value":0.036,"lower_value":0.035,"upper_value":0.037},{"value":0.037,"lower_value":0.036,"upper_value":0.038},{"value":0.038,"lower_value":0.037,"upper_value":0.039},{"value":0.039,"lower_value":0.038,"upper_value":0.04},{"value":0.04,"lower_value":0.039,"upper_value":0.041},{"value":0.041,"lower_value":0.04,"upper_value":0.042},{"value":0.042,"lower_value":0.041,"upper_value":0.043},{"value":0.043,"lower_value":0.042,"upper_value":0.044} +]}$$::jsonb); + +-- run_id = 7 (arm-edge-b, OS-1.0) +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(7, 'iperf3', 'vector', $${"benchmark":"iperf3","metric":"retransmits","series":"sum","unit":"packets","sample_interval_sec":10,"points":[{"value":1,"lower_value":0,"upper_value":2},{"value":1,"lower_value":0,"upper_value":2},{"value":0,"lower_value":0,"upper_value":1},{"value":0,"lower_value":0,"upper_value":1},{"value":1,"lower_value":0,"upper_value":2},{"value":2,"lower_value":1,"upper_value":3},{"value":1,"lower_value":0,"upper_value":2},{"value":1,"lower_value":0,"upper_value":2},{"value":0,"lower_value":0,"upper_value":1},{"value":0,"lower_value":0,"upper_value":1},{"value":0,"lower_value":0,"upper_value":1},{"value":1,"lower_value":0,"upper_value":2},{"value":2,"lower_value":1,"upper_value":3},{"value":1,"lower_value":0,"upper_value":2},{"value":1,"lower_value":0,"upper_value":2},{"value":0,"lower_value":0,"upper_value":1},{"value":0,"lower_value":0,"upper_value":1},{"value":1,"lower_value":0,"upper_value":2},{"value":2,"lower_value":1,"upper_value":3},{"value":1,"lower_value":0,"upper_value":2},{"value":1,"lower_value":0,"upper_value":2},{"value":0,"lower_value":0,"upper_value":1},{"value":0,"lower_value":0,"upper_value":1},{"value":0,"lower_value":0,"upper_value":1} +]}$$::jsonb); + +INSERT INTO raw_result (run_id, tool, payload_kind, payload) +VALUES +(7, 'iperf3', 'vector', $${"benchmark":"iperf3","metric":"jitter_ms","series":"sum","unit":"ms","sample_interval_sec":10,"points":[{"value":0.05,"lower_value":0.048,"upper_value":0.052},{"value":0.052,"lower_value":0.05,"upper_value":0.054},{"value":0.054,"lower_value":0.052,"upper_value":0.056},{"value":0.056,"lower_value":0.054,"upper_value":0.058},{"value":0.058,"lower_value":0.056,"upper_value":0.06},{"value":0.06,"lower_value":0.058,"upper_value":0.062},{"value":0.062,"lower_value":0.06,"upper_value":0.064},{"value":0.064,"lower_value":0.062,"upper_value":0.066},{"value":0.066,"lower_value":0.064,"upper_value":0.068},{"value":0.068,"lower_value":0.066,"upper_value":0.07},{"value":0.07,"lower_value":0.068,"upper_value":0.072},{"value":0.072,"lower_value":0.07,"upper_value":0.074},{"value":0.074,"lower_value":0.072,"upper_value":0.076},{"value":0.076,"lower_value":0.074,"upper_value":0.078},{"value":0.078,"lower_value":0.076,"upper_value":0.08},{"value":0.08,"lower_value":0.078,"upper_value":0.082},{"value":0.082,"lower_value":0.08,"upper_value":0.084},{"value":0.084,"lower_value":0.082,"upper_value":0.086},{"value":0.086,"lower_value":0.084,"upper_value":0.088},{"value":0.088,"lower_value":0.086,"upper_value":0.09},{"value":0.09,"lower_value":0.088,"upper_value":0.092},{"value":0.092,"lower_value":0.09,"upper_value":0.094},{"value":0.094,"lower_value":0.092,"upper_value":0.096},{"value":0.096,"lower_value":0.094,"upper_value":0.098} +]}$$::jsonb); + +-- 3) Minimal SQL parsing from raw JSON into flat tables +INSERT INTO scalar_result (raw_id, run_id, benchmark, measure, value, lower_value, upper_value, unit) +SELECT raw_id, run_id, benchmark, measure, value, lower_value, upper_value, unit +FROM v_scalar_raw_extract +ORDER BY raw_id, benchmark, measure; + +INSERT INTO vector_point (raw_id, run_id, benchmark, measure, series, point_idx, value, lower_value, upper_value, unit) +SELECT raw_id, run_id, benchmark, measure, series, point_idx, value, lower_value, upper_value, unit +FROM v_vector_raw_extract +ORDER BY raw_id, benchmark, measure, series, point_idx; + +-- 4) Demo events for timeline markers +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (1, '2026-03-10 10:02:00+00'::timestamptz, 'warmup', 'info', $${"kind":"warmup","phase":"warmup"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (1, '2026-03-10 10:06:00+00'::timestamptz, 'steady_state', 'info', $${"kind":"steady","phase":"steady"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (1, '2026-03-10 10:10:00+00'::timestamptz, 'cooldown', 'info', $${"kind":"cooldown","phase":"cooldown"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (2, '2026-03-11 10:02:00+00'::timestamptz, 'warmup', 'info', $${"kind":"warmup","phase":"warmup"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (2, '2026-03-11 10:06:00+00'::timestamptz, 'steady_state', 'info', $${"kind":"steady","phase":"steady"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (3, '2026-03-11 11:05:00+00'::timestamptz, 'io_window', 'warning', $${"kind":"comparison","note":"ARM IO window"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (4, '2026-03-10 12:00:20+00'::timestamptz, 'cpu_spike', 'info', $${"kind":"cpu"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (5, '2026-03-11 12:00:25+00'::timestamptz, 'syscall_spike', 'warning', $${"kind":"syscall"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (6, '2026-03-12 09:03:00+00'::timestamptz, 'net_warmup', 'info', $${"kind":"network"}$$::jsonb); +INSERT INTO run_event (run_id, event_ts, label, severity, payload) +VALUES (7, '2026-03-12 09:33:00+00'::timestamptz, 'net_warmup', 'info', $${"kind":"network"}$$::jsonb); + +-- 5) Keep sequences aligned with inserted explicit IDs +SELECT setval(pg_get_serial_sequence('test_run', 'run_id'), (SELECT COALESCE(MAX(run_id), 1) FROM test_run), true); +SELECT setval(pg_get_serial_sequence('raw_result', 'raw_id'), (SELECT COALESCE(MAX(raw_id), 1) FROM raw_result), true); +SELECT setval(pg_get_serial_sequence('run_event', 'event_id'), (SELECT COALESCE(MAX(event_id), 1) FROM run_event), true); + +COMMIT; + +/* Synthetic performance and endurance data */ +-- 1) Experiment table +COPY experiment (experiment_id, config_id, description, type, started_at, ended_at, tests_total, tests_passed, tests_failed, tests_broken, tests_skipped) FROM stdin; +12 5 Test suite for syscalls. all 2026-04-11 20:13:03.925623 2026-04-11 20:29:08.353282 14 14 0 0 0 +1 1 Test suite for file subsystem. all 2026-04-11 17:18:23.373333 2026-04-11 17:41:11.863528 79 70 9 0 0 +7 4 Test suite for file subsystem. all 2026-04-11 18:52:33.201808 2026-04-11 19:15:23.033697 80 72 8 0 0 +15 4 Test suite for all subsystems. all 2026-04-11 20:45:52.445878 2026-04-11 22:33:48.453339 156 152 2 2 0 +13 4 Test suite for IPC subsystem. all 2026-04-11 20:30:12.882966 2026-04-11 20:37:22.898333 5 5 0 0 0 +2 2 Test suite for file subsystem. all 2026-04-11 17:41:47.64027 2026-04-11 17:57:47.090277 85 85 0 0 0 +16 7 Test suite for all subsystems. all 2026-04-11 22:34:22.82427 2026-04-11 22:34:34.579491 2 2 0 0 0 +14 6 Test suite for IPC subsystem. all 2026-04-11 20:37:57.181007 2026-04-11 20:44:48.131068 8 8 0 0 0 +8 3 Test suite for file subsystem. all 2026-04-11 19:15:57.159986 2026-04-11 19:30:42.19645 85 85 0 0 0 +3 1 Test suite for virtual memory. all 2026-04-11 17:58:49.99321 2026-04-11 18:10:31.635293 10 7 2 1 0 +4 2 Test suite for virtual memory. all 2026-04-11 18:11:05.828751 2026-04-11 18:24:08.898449 12 12 0 0 0 +9 4 Test suite for virtual memory. all 2026-04-11 19:31:45.527335 2026-04-11 19:43:25.202115 10 9 0 1 0 +17 4 Test suite for IPC subsystem. all 2026-04-12 07:58:28.7138 2026-04-12 08:05:34.951772 5 5 0 0 0 +20 7 Test suite for all subsystems. all 2026-04-12 09:08:53.204012 2026-04-12 10:05:22.948392 156 155 0 1 0 +10 5 Test suite for virtual memory. all 2026-04-11 19:43:59.711964 2026-04-11 19:57:49.990973 12 12 0 0 0 +19 4 Test suite for all subsystems. all 2026-04-12 08:13:34.986505 2026-04-12 09:08:18.800542 142 139 1 2 0 +5 1 Test suite for syscalls. all 2026-04-11 18:25:11.322496 2026-04-11 18:35:25.27423 10 4 6 0 0 +18 7 Test suite for IPC subsystem. all 2026-04-12 08:06:05.848622 2026-04-12 08:12:32.921689 8 8 0 0 0 +6 3 Test suite for syscalls. all 2026-04-11 18:35:59.623691 2026-04-11 18:46:37.767828 9 9 0 0 0 +11 4 Test suite for syscalls. all 2026-04-11 19:58:53.783851 2026-04-11 20:12:28.721058 11 11 0 0 0 +\. + +-- 2) Configuration table +COPY configuration (config_id, os, packages, core_info, core_config, hardware) FROM stdin; +1 openSUSE Leap 15.6 {"numactl": "2.0.14.20.g4ee5e0c:150400.1.24:x86_64", "libsmi": "0.4.8:1.29:x86_64", "yast2-printer": "4.6.0:150600.1.4:x86_64", "libverto1": "0.2.6:3.20:x86_64", "wireguard-tools": "1.0.20210914:150600.1.7:x86_64", "libreiserfscore0": "3.6.27:2.24:x86_64", "irqbalance": "1.9.2:150500.1.3:x86_64", "libgmp10": "6.1.2:4.9.1:x86_64", "bind": "9.18.33:150600.3.18.1:x86_64", "release-notes-openSUSE": "15.6.20240123.1b6f9fd:lp156.1.1:noarch", "chrony": "4.1:150400.21.8.1:x86_64", "libz1": "1.2.13:150500.4.6.1:x86_64", "libsss_nss_idmap0": "2.10.2:150600.3.41.1:x86_64", "hwinfo": "21.89:150500.3.12.1:x86_64", "polkit": "121:150500.3.6.1:x86_64", "libmagic1": "5.32:7.14.1:x86_64", "dnsmasq": "2.90:150400.16.6.2:x86_64", "perl": "5.26.1:150300.17.20.1:x86_64", "rsyslog": "8.2406.0:150600.12.10.1:x86_64", "libgpgme11": "1.23.0:150600.3.5.1:x86_64", "gdb": "16.3:150400.15.26.1:x86_64", "thin-provisioning-tools": "0.7.5:3.3.1:x86_64", "yast2-bootloader": "4.6.7:lp156.1.2:x86_64", "libsasl2-3": "2.1.28:150600.7.14.1:x86_64", "ltp-stable": "20260130:96.5:x86_64", "net-tools": "2.0+git20170221.479bb4a:150000.5.13.1:x86_64", "yast2-nis-client": "4.6.0:150600.1.5:x86_64", "libksba8": "1.6.4:150600.1.2:x86_64", "btrfsprogs": "6.5.1:150600.2.4:x86_64", "yast2-security": "4.6.1:150600.3.3.2:noarch", "libyaml-cpp0_6": "0.6.3:150400.4.3.1:x86_64", "xfsprogs": "6.7.0:150600.3.6.2:x86_64", "yast2-update": "4.6.3:150600.1.2:x86_64", "krb5": "1.20.1:150600.11.14.1:x86_64", "libavahi-client3": "0.8:150600.15.12.1:x86_64", "glibc-locale-base": "2.38:150600.14.43.1:x86_64", "cyrus-sasl-plain": "2.1.28:150600.7.14.1:x86_64", "rdma-ndd": "49.1:150600.2.5:x86_64", "libduktape206": "2.6.0:150500.4.5.1:x86_64", "perl-XML-SAX-Base": "1.09:1.25:noarch", "libibverbs": "49.1:150600.2.5:x86_64", "libinih0": "53:150400.1.7:x86_64", "perl-XML-SAX": "0.99:1.22:x86_64", "libopencsd1": "1.4.0:150600.1.5:x86_64", "libhidapi-hidraw0": "0.10.1:150300.3.2.1:x86_64", "dbus-1": "1.12.2:150400.18.8.1:x86_64", "libXpm4": "3.5.12:150000.3.10.1:x86_64", "libffi7": "3.2.1.git259:10.8:x86_64", "tcpdump": "4.99.1:150600.7.3:x86_64", "libmpxwrappers2": "8.2.1+r264010:150000.1.6.4:x86_64", "libaudit1": "3.0.6:150400.4.16.1:x86_64", "man": "2.7.6:150100.8.5.1:x86_64", "libxshmfence1": "1.2:1.23:x86_64", "libauparse0": "3.0.6:150400.4.16.1:x86_64", "python3-pytz": "2022.1:150300.3.9.1:noarch", "perl-Encode-Locale": "1.05:1.24:noarch", "file": "5.32:7.14.1:x86_64", "python3-solv": "0.7.34:150600.8.19.2:x86_64", "perl-URI": "1.73:1.16:noarch", "libsodium23": "1.0.18:150000.4.14.1:x86_64", "grub2-x86_64-efi": "2.12:150600.8.49.1:noarch", "libtiff5": "4.0.9:150000.45.41.1:x86_64", "psmisc": "23.0:150000.6.25.1:x86_64", "python3-immutables": "0.11:150000.1.3.1:x86_64", "perl-Net-HTTP": "6.17:1.20:noarch", "libzmq5": "4.2.3:3.15.4:x86_64", "ruby2.5-stdlib": "2.5.9:150000.4.54.1:x86_64", "expat": "2.7.1:150400.3.37.1:x86_64", "libevent-2_1-7": "2.1.12:150600.1.2:x86_64", "python3-cffi": "1.13.2:150200.3.5.1:x86_64", "libitm1": "15.2.0+git10201:150000.1.9.1:x86_64", "mailx": "12.5:150600.16.3:x86_64", "ruby2.5-rubygem-ruby-dbus": "0.14.0:1.27:x86_64", "libxcb-randr0": "1.13:150000.3.11.1:x86_64", "yast2-nfs-common": "4.6.0:150600.1.2:noarch", "libgirepository-1_0-1": "1.78.1:150600.2.3:x86_64", "libgbm1": "23.3.4:150600.83.3.1:x86_64", "libcap-ng0": "0.7.9:4.37:x86_64", "cifs-utils": "6.15:150400.3.18.1:x86_64", "php8-cli": "8.2.30:150600.3.25.1:x86_64", "libavahi-common3": "0.8:150600.15.12.1:x86_64", "python3-msgpack": "0.5.6:150100.3.3.1:x86_64", "php8": "8.2.30:150600.3.25.1:x86_64", "libnettle8": "3.9.1:150600.3.2.1:x86_64", "aaa_base": "84.87+git20180409.04c9dae:150300.10.28.2:x86_64", "php8-iconv": "8.2.30:150600.3.25.1:x86_64", "libyui-ncurses16": "4.5.3:150600.6.2.1:x86_64", "python3-configshell-fb": "1.1.29:3.3.1:noarch", "php8-gd": "8.2.30:150600.3.25.1:x86_64", "shared-mime-info": "2.4:150600.3.3.2:x86_64", "util-linux-systemd": "2.39.3:150600.4.18.1:x86_64", "perl-Net-DBus": "1.1.0:1.30:x86_64", "openssl-3": "3.1.4:150600.5.45.1:x86_64", "sysconfig": "0.85.10:150200.15.1:x86_64", "sysstat": "12.0.2:150000.3.51.1:x86_64", "libcryptsetup12": "2.7.0:150600.3.3.1:x86_64", "nscd": "2.38:150600.14.43.1:x86_64", "fuse": "2.9.7:3.3.1:x86_64", "libHX28": "3.22:1.26:x86_64", "dracut-kiwi-lib": "10.2.33:150600.14.10.2:x86_64", "libtss2-mu0": "3.1.1:150600.2.1:x86_64", "libnfnetlink0": "1.0.1:2.11:x86_64", "yast2-sysconfig": "4.6.0:150600.1.2:noarch", "libldap-data": "2.4.46:150600.25.3.1:noarch", "system-user-tss": "20170617:150400.24.2.1:noarch", "yast2-trans-stats": "2.19.0:1.28:noarch", "yast2-iscsi-lio-server": "4.6.0:150600.1.2:noarch", "libpcre2-8-0": "10.42:150600.1.26:x86_64", "libtss2-sys1": "3.1.1:150600.2.1:x86_64", "branding-openSUSE": "15.6.20240408:lp156.1.2:noarch", "dhcp": "4.3.6.P1:150000.6.22.1:x86_64", "terminfo-base": "6.1:150000.5.30.1:x86_64", "libntfs-3g87": "2022.5.17:150000.3.21.1:x86_64", "libicu-suse65_1": "65.1:150200.4.15.1:x86_64", "ksh": "93vu:bp156.6.3.1:x86_64", "libopenssl3": "3.1.4:150600.5.45.1:x86_64", "libsource-highlight4": "3.1.9:150000.3.9.1:x86_64", "libdbus-1-3": "1.12.2:150400.18.8.1:x86_64", "yast2-firewall": "4.6.1:150600.3.3.2:noarch", "libusb-1_0-0": "1.0.24:150400.3.3.1:x86_64", "net-tools-deprecated": "2.0+git20170221.479bb4a:150000.5.13.1:x86_64", "libnftnl11": "1.2.0:150400.1.6:x86_64", "yast2-iscsi-client": "4.6.6:150600.3.14.2:noarch", "zypper": "1.14.94:150600.10.52.1:x86_64", "sssd-tools": "2.10.2:150600.3.41.1:x86_64", "libxcb1": "1.13:150000.3.11.1:x86_64", "yast2-online-update-frontend": "4.6.2:150600.1.2:noarch", "libbrotlidec1": "1.0.7:150200.3.5.1:x86_64", "fping": "5.1:150600.1.4:x86_64", "yast2-nfs-server": "4.6.0:150600.1.2:noarch", "libjitterentropy3": "3.4.1:150000.1.12.1:x86_64", "yast2-logs": "4.6.8:150600.1.1:x86_64", "yast2-installation": "4.6.14:150600.3.6.1:noarch", "libbz2-1": "1.0.8:150400.1.122:x86_64", "less": "643:150600.3.3.1:x86_64", "yast2-registration": "4.6.3:150600.3.6.2:noarch", "libidn2-0": "2.2.0:3.6.1:x86_64", "libsubid5": "4.17.2:150600.17.18.1:x86_64", "libfmt8": "8.0.1:150400.1.8:x86_64", "gpg2": "2.4.4:150600.3.15.1:x86_64", "shadow": "4.17.2:150600.17.18.1:x86_64", "libmlx5-1": "49.1:150600.2.5:x86_64", "vim-data-common": "9.2.0110:150500.20.43.1:noarch", "libXext6": "1.3.3:1.30:x86_64", "librbd1": "16.2.13.66+g54799ee0666:150400.3.11.1:x86_64", "libseccomp2": "2.5.3:150400.2.4:x86_64", "ca-certificates-mozilla": "2.84:150200.44.1:noarch", "libtraceevent1": "1.8.4:150500.11.8.1:x86_64", "systemd-default-settings-branding-openSUSE": "0.10:150300.3.7.1:noarch", "system-group-audit": "3.0.6:150400.4.16.1:x86_64", "libisl15": "0.18:1.443:x86_64", "dmidecode": "3.6:150400.16.11.2:x86_64", "perl-XML-LibXML": "2.0132:150000.3.3.1:x86_64", "libtsan0": "11.3.0+git1637:150000.1.11.2:x86_64", "libfastjson4": "0.99.9:150400.3.3.1:x86_64", "libpython3_6m1_0": "3.6.15:150300.10.109.1:x86_64", "m4": "1.4.18:4.3.1:x86_64", "libip6tc2": "1.8.7:1.1:x86_64", "glib2-tools": "2.78.6:150600.4.35.1:x86_64", "perl-LWP-MediaTypes": "6.02:1.25:noarch", "libfuse2": "2.9.7:3.3.1:x86_64", "grub2": "2.12:150600.8.49.1:x86_64", "system-user-mail": "20170617:150400.24.2.1:noarch", "libunwind": "1.5.0:4.5.1:x86_64", "python3-netifaces": "0.10.6:150000.3.2.1:x86_64", "autoconf": "2.69:1.445:noarch", "tcsh": "6.20.00:150000.4.18.2:x86_64", "python3-blinker": "1.4:150000.3.6.1:noarch", "perl-File-Listing": "6.04:1.23:noarch", "containerd": "1.7.29:150000.130.1:x86_64", "python3-attrs": "19.3.0:150200.3.9.1:noarch", "libX11-xcb1": "1.8.7:150600.3.6.1:x86_64", "libprotobuf-c1": "1.5.0:150600.1.4:x86_64", "ruby2.5-rubygem-gem2rpm": "0.10.1:3.45:x86_64", "libwebp7": "1.0.3:150200.3.14.1:x86_64", "openssl": "3.1.4:150600.2.1:noarch", "ruby": "2.5:1.21:x86_64", "libxcb-xfixes0": "1.13:150000.3.11.1:x86_64", "libcrack2": "2.9.11:150600.1.90:x86_64", "python3-rpm": "4.14.3:150400.59.16.1:x86_64", "busybox-ed": "1.37.0:150500.7.11.1:noarch", "curl": "8.14.1:150600.4.40.1:x86_64", "python3-setuptools": "44.1.1:150400.9.15.1:noarch", "perl-libwww-perl": "6.31:1.17:noarch", "libdevmapper1_03": "2.03.22_1.02.196:150600.3.9.3:x86_64", "python3-zipp": "0.6.0:150100.3.8.1:noarch", "Mesa-libEGL1": "23.3.4:150600.83.3.1:x86_64", "libpng16-16": "1.6.40:150600.3.12.1:x86_64", "python3-configobj": "5.0.6:150000.3.3.1:noarch", "php8-pdo": "8.2.30:150600.3.25.1:x86_64", "openldap2-client": "2.4.46:150600.25.3.1:x86_64", "ruby2.5-rubygem-cfa_grub2": "2.0.0:1.55:x86_64", "php8-sockets": "8.2.30:150600.3.25.1:x86_64", "zsh": "5.8.1:150600.18.3.2:x86_64", "python3-dbus-python": "1.2.16:150600.3.2:x86_64", "libsensors4": "3.5.0:4.6.1:x86_64", "libdevmapper-event1_03": "2.03.22_1.02.196:150600.3.9.3:x86_64", "dracut": "059+suse.562.geca59f6b:150600.3.23.1:x86_64", "time": "1.9:1.15:x86_64", "liblvm2cmd2_03": "2.03.22:150600.3.9.3:x86_64", "lvm2": "2.03.22:150600.3.9.3:x86_64", "libdhash1": "0.5.0:3.3.1:x86_64", "libestr0": "0.1.10:1.25:x86_64", "libstorage-ng1": "4.5.201:150600.1.3:x86_64", "libnscd1": "2.0.2:3.21:x86_64", "filesystem": "15.0:11.8.1:x86_64", "squashfs": "4.6.1:150300.3.3.1:x86_64", "yast2-slp": "4.6.0:150600.1.5:x86_64", "lsscsi": "0.28:1.24:x86_64", "libcom_err2": "1.47.0:150600.4.6.2:x86_64", "yast2-journal": "4.6.0:150600.1.2:noarch", "zip": "3.0:2.22:x86_64", "fillup": "1.42:2.18:x86_64", "yast2-tftp-server": "4.6.0:150600.1.2:noarch", "tcpd": "7.6:1.433:x86_64", "libpcre1": "8.45:150000.20.13.1:x86_64", "rpcbind": "0.2.3:5.9.2:x86_64", "cloud-init-config-suse": "23.3:lp156.3.9:x86_64", "libstdc++6": "15.2.0+git10201:150000.1.9.1:x86_64", "cronie": "1.5.7:150400.84.3.1:x86_64", "python-rtslib-fb-common": "2.1.75:150500.1.4:noarch", "bash-sh": "4.4:150400.27.6.1:x86_64", "syslog-service": "2.0:150300.13.3.1:noarch", "libboost_regex1_66_0": "1.66.0:150200.12.7.1:x86_64", "libgcrypt20": "1.10.3:150600.3.9.1:x86_64", "libpolkit-agent-1-0": "121:150500.3.6.1:x86_64", "p11-kit": "0.23.22:150500.8.3.1:x86_64", "libboost_thread1_66_0": "1.66.0:150200.12.7.1:x86_64", "docker-buildx": "0.11.2:bp156.1.12:x86_64", "tcl": "8.6.12:150300.14.9.1:x86_64", "libelf1": "0.185:150400.5.8.3:x86_64", "nfs-client": "2.6.4:150600.28.12.1:x86_64", "parted": "3.2:150300.21.3.1:x86_64", "grep": "3.1:150000.4.6.1:x86_64", "yast2-network": "4.6.11:150600.3.6.1:noarch", "systemd-presets-branding-openSUSE": "12.2:lp156.7.3.1:noarch", "libsolv-tools-base": "0.7.34:150600.8.19.2:x86_64", "openssh": "9.6p1:150600.6.34.1:x86_64", "libfreetype6": "2.10.4:150000.4.25.1:x86_64", "crypto-policies": "20230920.570ea89:150600.3.16.1:noarch", "yast2-online-update": "4.6.2:150600.1.2:noarch", "liblognorm5": "2.0.6:150000.3.3.1:x86_64", "boost-license1_66_0": "1.66.0:150200.12.7.1:noarch", "yast2-samba-client": "4.6.1:150600.1.2:noarch", "expect": "5.45.4:3.3.1:x86_64", "libzstd1": "1.5.5:150600.1.3:x86_64", "yast2-http-server": "4.6.1:150600.1.2:noarch", "libatk-1_0-0": "2.50.0:150600.1.2:x86_64", "liblua5_3-5": "5.3.6:3.6.1:x86_64", "yast2-dns-server": "4.6.0:150600.1.2:noarch", "yast2-core": "4.6.0:150600.1.7:x86_64", "libncurses6": "6.1:150000.5.30.1:x86_64", "yast2-users": "4.6.6:150600.3.3.5:x86_64", "yast2-ycp-ui-bindings": "4.6.0:150600.1.5:x86_64", "libcrypt1": "4.4.15:150300.4.7.1:x86_64", "yast2-mail": "4.6.0:150600.1.2:noarch", "crash": "8.0.4:150600.4.6.2:x86_64", "libudev1": "254.27:150600.4.62.1:x86_64", "yast2-add-on": "4.6.2:150600.1.2:noarch", "libgnutls30": "3.8.3:150600.4.17.1:x86_64", "libsigc-2_0-0": "2.12.1:150600.1.2:x86_64", "gpg-pubkey": "3dbdc284:53674dd4:(none)", "libX11-6": "1.8.7:150600.3.6.1:x86_64", "coreutils": "8.32:150400.9.9.1:x86_64", "krb5-client": "1.20.1:150600.11.14.1:x86_64", "gawk": "4.2.1:150000.3.3.1:x86_64", "pmdk": "1.11.1:150400.1.10:x86_64", "cyrus-sasl-digestmd5": "2.1.28:150600.7.14.1:x86_64", "libzypp": "17.37.18:150600.3.82.1:x86_64", "libibverbs1": "49.1:150600.2.5:x86_64", "libnetfilter_conntrack3": "1.0.7:1.38:x86_64", "libuv1": "1.44.2:150500.3.5.1:x86_64", "libmana1": "49.1:150600.2.5:x86_64", "perl-Parse-RecDescent": "1.967015:1.22:x86_64", "libctf0": "2.45:150100.7.57.1:x86_64", "librados2": "16.2.13.66+g54799ee0666:150400.3.11.1:x86_64", "liblockdev1": "1.0.3_git201003141408:1.97:x86_64", "libpgm-5_2-0": "5.2.122:150400.15.6:x86_64", "libsha1detectcoll1": "1.0.3:2.18:x86_64", "perl-Crypt-SmbHash": "0.12:1.24:x86_64", "libblogger2": "2.26:150300.4.6.1:x86_64", "libopencsd_c_api1": "1.4.0:150600.1.5:x86_64", "kbd": "2.4.0:150400.5.9.1:x86_64", "libtirpc-netconfig": "1.3.4:150300.3.23.1:x86_64", "stress-ng": "0.17.04:bp156.1.1:x86_64", "system-user-man": "20170617:150400.24.2.1:noarch", "blog": "2.26:150300.4.6.1:x86_64", "libdrm2": "2.4.118:150600.1.4:x86_64", "at": "3.2.2:150400.4.3.10:x86_64", "cpio": "2.13:150400.3.6.1:x86_64", "libmpfr6": "4.0.2:3.3.1:x86_64", "xtables-plugins": "1.8.7:1.1:x86_64", "kbd-legacy": "2.4.0:150400.5.9.1:noarch", "libsepol1": "3.1:150400.1.70:x86_64", "libopenssl1_1": "1.1.1w:150600.5.21.1:x86_64", "libexpat1": "2.7.1:150400.3.37.1:x86_64", "libwayland-server0": "1.22.0:150600.1.6:x86_64", "libatspi0": "2.50.0:150600.1.2:x86_64", "efibootmgr": "17:150400.3.2.2:x86_64", "linux-glibc-devel": "6.4:150600.2.17:x86_64", "python3": "3.6.15:150300.10.109.1:x86_64", "libip4tc2": "1.8.7:1.1:x86_64", "perl-CPAN-Changes": "0.400002:1.24:noarch", "python3-psutil": "5.9.1:150300.3.6.1:x86_64", "deltarpm": "3.6.5:150000.5.6.3:x86_64", "perl-IO-HTML": "1.001:1.24:noarch", "util-linux": "2.39.3:150600.4.18.1:x86_64", "libdialog14": "1.3:3.3.7:x86_64", "perl-TimeDate": "2.30:3.9.1:noarch", "libpxbackend-1_0": "0.5.3:150600.4.6.2:x86_64", "libruby2_5-2_5": "2.5.9:150000.4.54.1:x86_64", "site-config": "0.2:bp156.3.1:x86_64", "grub2-i386-pc": "2.12:150600.8.49.1:noarch", "libtasn1": "4.13:150000.4.14.1:x86_64", "libdrm_nouveau2": "2.4.118:150600.1.4:x86_64", "python3-pyserial": "3.4:150000.3.4.1:noarch", "ncurses-utils": "6.1:150000.5.30.1:x86_64", "libdrm_intel1": "2.4.118:150600.1.4:x86_64", "python3-jsonpointer": "1.14:150000.3.2.1:noarch", "systemd-rpm-macros": "16:150000.7.42.1:noarch", "perl-HTTP-Date": "6.02:1.24:noarch", "python3-distro": "1.5.0:3.5.1:noarch", "runc": "1.3.4:150000.90.1:x86_64", "perl-HTTP-Message": "6.14:1.16:noarch", "python3-asn1crypto": "0.24.0:150000.3.5.1:noarch", "dialog": "1.3:3.3.7:x86_64", "perl-HTTP-Cookies": "6.04:1.20:noarch", "growpart": "0.31:5.9.3:noarch", "libargon2-1": "20190702:150600.1.4:x86_64", "libLLVM17": "17.0.6:150600.3.7.1:x86_64", "python3-Babel": "2.8.0:3.3.1:noarch", "liblz4-1": "1.9.4:150600.1.4:x86_64", "libcilkrts5": "7.5.0+r278197:150000.4.44.1:x86_64", "scout": "0.2.7+20230124.b4e3468:150500.1.1:noarch", "libtalloc2": "2.4.1:150600.1.3:x86_64", "libubsan0": "7.5.0+r278197:150000.4.44.1:x86_64", "ruby-common": "2.1:3.15:noarch", "openslp": "2.0.0:150600.19.5:x86_64", "libxcb-glx0": "1.13:150000.3.11.1:x86_64", "ruby2.5-rubygem-mini_portile2": "2.3.0:1.27:x86_64", "systemd-presets-common-SUSE": "15:150600.25.2:noarch", "libxcb-sync1": "1.13:150000.3.11.1:x86_64", "yast2-python3-bindings": "4.6.0:150600.1.6:x86_64", "lsof": "4.99.0:150600.1.15:x86_64", "cpp7": "7.5.0+r278197:150000.4.44.1:x86_64", "yast2-ruby-bindings": "4.6.2:150600.1.5:x86_64", "libtevent0": "0.15.0:150600.1.3:x86_64", "Mesa-dri": "23.3.4:150600.83.3.1:x86_64", "python3-ordered-set": "4.0.2:150400.8.34:noarch", "augeas": "1.14.1:150600.3.3.1:x86_64", "postfix": "3.8.4:150600.3.3.1:x86_64", "python3-pyudev": "0.22.0+git.1642212208.d5630bf:150400.5.50:noarch", "libaio1": "0.3.113:150600.15.3.1:x86_64", "cpp": "7:3.9.1:x86_64", "python3-cryptography": "3.3.2:150400.26.1:x86_64", "libbpf1": "1.2.2:150600.3.6.2:x86_64", "gcc": "7:3.9.1:x86_64", "python3-jsonpatch": "1.23:150100.3.5.1:noarch", "libhavege2": "1.9.14:150600.11.3.1:x86_64", "perl-XML-Parser": "2.44:150000.3.3.1:x86_64", "python3-importlib-metadata": "1.5.0:150100.3.8.1:noarch", "libnl-config": "3.9.0:150600.15.4.4:noarch", "Mesa": "23.3.4:150600.83.3.1:x86_64", "python3-passlib": "1.7.4:150300.3.2.1:noarch", "libuuid1": "2.39.3:150600.4.18.1:x86_64", "php8-openssl": "8.2.30:150600.3.25.1:x86_64", "python3-Jinja2": "2.10.1:150000.3.21.1:noarch", "mdadm": "4.3+34.g1edf7b5d:150600.3.20.1:x86_64", "php8-xmlreader": "8.2.30:150600.3.25.1:x86_64", "python3-jsonschema": "3.2.0:150200.9.5.1:noarch", "pkg-config": "0.29.2:150600.15.6.3:x86_64", "php8-zip": "8.2.30:150600.3.25.1:x86_64", "yast2-country-data": "4.6.7:150600.3.3.2:x86_64", "xz": "5.4.1:150600.3.3.1:x86_64", "php8-curl": "8.2.30:150600.3.25.1:x86_64", "wicked-service": "0.6.77:150600.11.15.1:x86_64", "librdkafka1": "0.11.6:150600.16.3.1:x86_64", "phoronix-test-suite": "10.8.4:bp156.4.2:noarch", "python3-targetcli-fb": "2.1.54:150600.11.2:noarch", "libmount1": "2.39.3:150600.4.18.1:x86_64", "metamail": "2.7.19:bp156.5.6:x86_64", "suse-module-tools": "15.6.14:150600.3.17.1:x86_64", "gettext-runtime": "0.21.1:150600.3.3.2:x86_64", "lshw-lang": "B.02.20:150200.3.18.2:noarch", "suseconnect-ng": "1.13.0:150600.3.11.1:x86_64", "libyui-ncurses-pkg16": "4.5.3:150600.6.2.1:x86_64", "ctags": "5.8:150000.3.3.1:x86_64", "cyrus-sasl-saslauthd": "2.1.28:150600.7.14.1:x86_64", "dos2unix": "7.4.0:1.19:x86_64", "libcollection4": "0.7.0:3.3.1:x86_64", "kernel-default": "6.4.0:150600.23.92.1:x86_64", "libedit0": "3.1.snap20150325:2.12:x86_64", "libpath_utils1": "0.2.1:3.3.1:x86_64", "dracut-kiwi-oem-repart": "10.2.33:150600.14.10.2:x86_64", "liblzo2-2": "2.10:2.22:x86_64", "telnet-server": "1.2:150000.3.6.1:x86_64", "fuse-exfat": "1.4.0:bp156.1.5:x86_64", "libtss2-esys0": "3.1.1:150600.2.1:x86_64", "kernel-default-extra": "6.4.0:150600.23.92.1:x86_64", "libsss_certmap0": "2.10.2:150600.3.41.1:x86_64", "net-tools-lang": "2.0+git20170221.479bb4a:150000.5.13.1:noarch", "vsftpd": "3.0.5:150600.10.6.1:x86_64", "sssd-ldap": "2.10.2:150600.3.41.1:x86_64", "apparmor-utils": "3.1.7:150600.5.9.1:noarch", "python3-sssd-config": "2.10.2:150600.3.41.1:x86_64", "libtpm_unseal1": "1.3.9.2:150600.7.3:x86_64", "iperf": "3.19.1:150000.3.15.1:x86_64", "ltrace": "0.7.91:150500.18.1:x86_64", "file-magic": "5.32:7.14.1:noarch", "libsmi2": "0.4.8:1.29:x86_64", "yast2-squid": "4.6.0:150600.1.5:x86_64", "liblzma5": "5.4.1:150600.3.3.1:x86_64", "pigz": "2.3.3:1.28:x86_64", "yast2-pam": "4.6.0:150600.1.2:noarch", "libnpth0": "1.5:2.11:x86_64", "libnsl2": "1.2.0:2.44:x86_64", "libstorage-ng-ruby": "4.5.201:150600.1.3:x86_64", "update-alternatives": "1.19.0.4:150000.4.7.1:x86_64", "yp-tools": "4.2.2:3.16:x86_64", "telnet": "1.2:150000.3.6.1:x86_64", "libacl1": "2.2.52:4.3.1:x86_64", "openSUSE-build-key": "1.0:lp156.8.2:noarch", "cron": "4.2:150400.84.3.1:x86_64", "libreadline7": "7.0:150400.27.6.1:x86_64", "gzip": "1.10:150200.10.1:x86_64", "audit": "3.0.6:150400.4.16.1:x86_64", "libselinux1": "3.5:150600.3.3.1:x86_64", "libp11-kit0": "0.23.22:150500.8.3.1:x86_64", "salt": "3006.0:150500.4.68.2:x86_64", "libssh4": "0.9.8:150600.11.9.1:x86_64", "p11-kit-tools": "0.23.22:150500.8.3.1:x86_64", "salt-minion": "3006.0:150500.4.68.2:x86_64", "libzio1": "1.06:2.20:x86_64", "libparted0": "3.2:150300.21.3.1:x86_64", "yast2-storage-ng": "4.6.18:150600.3.3.2:x86_64", "glibc-locale": "2.38:150600.14.43.1:x86_64", "netcat-openbsd": "1.203:150400.1.5:x86_64", "polkit-default-privs": "13.2+20241216.68f9867:150600.3.3.1:noarch", "rpm-config-SUSE": "1:150400.14.3.1:noarch", "patterns-base-minimal_base": "20200505:lp156.17.3.1:x86_64", "nfs-kernel-server": "2.6.4:150600.28.12.1:x86_64", "system-user-root": "20190513:3.3.1:noarch", "tar": "1.34:150000.3.37.1:x86_64", "cloud-init": "23.3:lp156.3.9:x86_64", "libfa1": "1.14.1:150600.3.3.1:x86_64", "pam": "1.3.0:150000.6.86.1:x86_64", "autofs": "5.1.9:150600.1.4:x86_64", "libattr1": "2.4.47:2.19:x86_64", "hwdata": "0.394:150000.3.77.2:noarch", "yast2-ldap": "4.6.0:150600.1.5:x86_64", "libsqlite3-0": "3.51.3:150000.3.39.1:x86_64", "mokutil": "0.5.0:150600.8.3:x86_64", "yast2-nis-server": "4.6.0:150600.1.2:noarch", "libassuan0": "2.5.5:150000.4.7.1:x86_64", "fontconfig": "2.14.2:150600.1.3:x86_64", "yast2-kdump": "4.6.3:150600.3.3.2:x86_64", "bash": "4.4:150400.27.6.1:x86_64", "yast2-xml": "4.6.0:150600.1.5:x86_64", "yast2-samba-server": "4.6.0:150600.1.2:noarch", "libglib-2_0-0": "2.78.6:150600.4.35.1:x86_64", "iproute2": "6.4:150600.7.9.1:x86_64", "autoyast2-installation": "4.6.6:150600.1.2:noarch", "libboost_system1_66_0": "1.66.0:150200.12.7.1:x86_64", "libpcap1": "1.10.4:150600.3.9.1:x86_64", "info": "6.5:4.17:x86_64", "sudo": "1.9.15p5:150600.3.12.1:x86_64", "pinentry": "1.1.0:4.3.1:x86_64", "openssh-clients": "9.6p1:150600.6.34.1:x86_64", "libndctl6": "78:150600.1.10:x86_64", "rpm": "4.14.3:150400.59.16.1:x86_64", "yast2-pkg-bindings": "4.6.5:150600.3.6.1:x86_64", "libpmem1": "1.11.1:150400.1.10:x86_64", "liblmdb-0_9_30": "0.9.30:150500.3.2.1:x86_64", "perl-gettext": "1.07:1.442:x86_64", "libmlx4-1": "49.1:150600.2.5:x86_64", "libefivar1": "37:6.12.1:x86_64", "perl-Digest-SHA1": "2.13:1.27:x86_64", "librdmacm1": "49.1:150600.2.5:x86_64", "libnuma1": "2.0.14.20.g4ee5e0c:150400.1.24:x86_64", "lockdev": "1.0.3_git201003141408:1.97:x86_64", "python3-pip": "20.0.2:150400.23.1:noarch", "findutils": "4.8.0:150300.3.3.2:x86_64", "libXtst6": "1.2.3:1.24:x86_64", "libslang2": "2.3.1a:150000.5.2.3:x86_64", "libpci3": "3.13.0:150300.13.12.1:x86_64", "sysuser-shadow": "3.2:150400.3.5.3:noarch", "lksctp-tools": "1.0.17:150000.3.3.1:x86_64", "yast2-schema": "4.3.31:150300.3.20.3:x86_64", "system-group-kvm": "20170617:150400.24.2.1:noarch", "libXxf86vm1": "1.1.4:1.23:x86_64", "libx86emu3": "3.1:1.23:x86_64", "pciutils": "3.13.0:150300.13.12.1:x86_64", "libjpeg8": "8.2.2:150600.22.5:x86_64", "groff": "1.22.4:150400.5.2.1:x86_64", "iptables": "1.8.7:1.1:x86_64", "libpciaccess0": "0.14:1.16:x86_64", "libeconf0": "0.5.2:150400.3.6.1:x86_64", "gio-branding-openSUSE": "42.1:lp156.9.2.2:noarch", "libwayland-client0": "1.22.0:150600.1.6:x86_64", "strace": "5.14:150400.3.3.2:x86_64", "libatk-bridge-2_0-0": "2.50.0:150600.1.2:x86_64", "libzip5": "1.10.1:150600.1.5:x86_64", "bc": "1.07.1:11.37:x86_64", "python3-curses": "3.6.15:150300.10.109.1:x86_64", "make-lang": "4.2.1:7.3.2:noarch", "libxtables12": "1.8.7:1.1:x86_64", "python3-PyYAML": "5.4.1:150300.3.6.1:x86_64", "perl-HTML-Tagset": "3.20:1.24:noarch", "keyutils": "1.6.3:5.6.1:x86_64", "python3-zypp-plugin": "0.6.5:150600.18.8.1:noarch", "perl-Test-Pod": "1.51:1.24:noarch", "libpipeline1": "1.4.1:150000.3.2.1:x86_64", "perl-Bootloader": "1.8.2:150600.3.3.1:x86_64", "perl-X11-Protocol": "0.56:1.24:x86_64", "libtasn1-6": "4.13:150000.4.14.1:x86_64", "wget": "1.20.3:150600.19.12.1:x86_64", "libdrm_radeon1": "2.4.118:150600.1.4:x86_64", "mozilla-nspr": "4.36.2:150000.3.36.1:x86_64", "python3-pycparser": "2.17:150000.3.5.1:noarch", "libmpc3": "1.1.0:1.47:x86_64", "sqlite3-tcl": "3.51.3:150000.3.39.1:x86_64", "python3-iniconfig": "1.1.1:150000.1.13.1:noarch", "perl-IO-Socket-SSL": "2.84.0:150600.1.2:noarch", "unzip": "6.00:150000.4.14.1:x86_64", "python3-chardet": "3.0.4:150000.5.6.1:noarch", "perl-Test-Pod-Coverage": "1.10:1.23:noarch", "libcares2": "1.19.1:150000.3.26.1:x86_64", "python3-appdirs": "1.4.3:150000.3.3.1:noarch", "perl-HTTP-Daemon": "6.01:150000.3.5.1:noarch", "cracklib-dict-small": "2.9.11:150600.1.90:x86_64", "python3-contextvars": "2.4:150000.1.3.1:noarch", "hdparm": "9.62:150400.3.5.2:x86_64", "libjson-c5": "0.16:150600.1.4:x86_64", "python3-packaging": "21.3:150200.3.6.1:noarch", "libatomic1": "15.2.0+git10201:150000.1.9.1:x86_64", "libsepol2": "3.5:150600.1.49:x86_64", "python3-urwid": "2.0.1:1.15:x86_64", "liblsan0": "15.2.0+git10201:150000.1.9.1:x86_64", "man-pages": "6.04:150600.1.2:noarch", "ruby2.5-rubygem-simpleidn": "0.0.9:1.17:x86_64", "libxcb-dri3-0": "1.13:150000.3.11.1:x86_64", "sed": "4.9:150600.1.4:x86_64", "ruby2.5-rubygem-fast_gettext": "1.6.0:1.18:x86_64", "libxcb-shm0": "1.13:150000.3.11.1:x86_64", "zstd": "1.5.5:150600.1.3:x86_64", "girepository-1_0": "1.78.1:150600.2.3:x86_64", "glibc-devel": "2.38:150600.14.43.1:x86_64", "libsemanage2": "3.5:150600.1.48:x86_64", "yast2-transfer": "4.6.0:150600.1.5:x86_64", "Mesa-libva": "23.3.4:150600.83.3.1:x86_64", "augeas-lenses": "1.14.1:150600.3.3.1:x86_64", "python3-more-itertools": "8.10.0:150400.10.1:noarch", "gcc7": "7.5.0+r278197:150000.4.44.1:x86_64", "libX11-data": "1.8.7:150600.3.6.1:noarch", "ruby2.5-rubygem-nokogiri": "1.8.5:150400.14.6.1:x86_64", "libgd3": "2.2.5:11.3.1:x86_64", "libblkid1": "2.39.3:150600.4.18.1:x86_64", "python3-pyOpenSSL": "21.0.0:150400.10.1:noarch", "libglvnd": "1.7.0:150600.1.2:x86_64", "libgmodule-2_0-0": "2.78.6:150600.4.35.1:x86_64", "python3-pyrsistent": "0.14.4:150100.3.4.1:x86_64", "php8-dom": "8.2.30:150600.3.25.1:x86_64", "libnfsidmap1": "1.0:150600.28.12.1:x86_64", "shim": "16.1:150300.4.31.3:x86_64", "php8-ctype": "8.2.30:150600.3.25.1:x86_64", "libtextstyle0": "0.21.1:150600.3.3.2:x86_64", "python3-urllib3": "1.25.10:150300.4.24.1:noarch", "Mesa-gallium": "23.3.4:150600.83.3.1:x86_64", "login_defs": "4.17.2:150600.17.18.1:noarch", "python3-pyzmq": "17.1.2:150000.3.8.1:x86_64", "php8-tokenizer": "8.2.30:150600.3.25.1:x86_64", "permissions": "20240826:150600.10.18.2:x86_64", "ruby2.5-rubygem-cfa": "1.0.2:1.33:x86_64", "php8-zlib": "8.2.30:150600.3.25.1:x86_64", "timezone": "2025b:150600.91.6.2:x86_64", "systemd": "254.27:150600.4.62.1:x86_64", "php8-pcntl": "8.2.30:150600.3.25.1:x86_64", "libsystemd0": "254.27:150600.4.62.1:x86_64", "scout-command-not-found": "0.2.7+20230124.b4e3468:150500.1.1:noarch", "xdg-utils": "1.1.3+20210805:150500.1.1:noarch", "libldb2": "2.8.2:150600.3.6.1:x86_64", "python3-oauthlib": "2.0.6:150000.3.6.1:noarch", "sharutils-lang": "4.15.2:150600.17.3:noarch", "libnl3-200": "3.9.0:150600.15.4.4:x86_64", "kmod": "29:150600.13.3.1:x86_64", "lshw": "B.02.20:150200.3.18.2:x86_64", "e2fsprogs": "1.47.0:150600.4.6.2:x86_64", "rsync": "3.2.7:150600.3.14.1:x86_64", "babeltrace": "1.5.8:150300.3.2.1:x86_64", "attr": "2.4.47:2.19:x86_64", "apparmor-parser": "3.1.7:150600.5.9.1:x86_64", "libbasicobjects0": "0.1.1:3.3.1:x86_64", "libXau6": "1.0.8:1.26:x86_64", "libsuseconnect": "1.13.0:150600.3.11.1:x86_64", "libjansson4": "2.14:150000.3.5.1:x86_64", "libldapcpp1": "0.3.1:1.33:x86_64", "yast2": "4.6.8:150600.1.1:x86_64", "libtss2-rc0": "3.1.1:150600.2.1:x86_64", "system-user-ftp": "20170617:150400.24.2.1:noarch", "traceroute": "2.0.21:150000.3.3.1:x86_64", "libnftables1": "0.9.8:150400.6.3.1:x86_64", "evmctl": "1.4:150600.7.3:x86_64", "libdebuginfod1": "0.185:150400.5.8.2:x86_64", "libsss_idmap0": "2.10.2:150600.3.41.1:x86_64", "python3-apparmor": "3.1.7:150600.5.9.1:x86_64", "ibmtss-base": "2.1.1:150600.3.3.2:noarch", "sssd": "2.10.2:150600.3.41.1:x86_64", "libtspi1": "0.3.15:150600.10.3.1:x86_64", "apparmor-utils-lang": "3.1.7:150600.5.9.1:noarch", "tpm-tools": "1.3.9.2:150600.7.3:x86_64", "yast2-support": "4.6.0:150600.1.2:noarch", "glibc": "2.38:150600.14.43.1:x86_64", "system-user-tftp": "20170617:150400.24.2.1:noarch", "which": "2.21:2.20:x86_64", "yast2-audit-laf": "4.6.0:150600.1.2:noarch", "libgpg-error0": "1.47:150600.1.3:x86_64", "libini_config5": "1.3.1:3.3.1:x86_64", "hostname": "3.16:2.22:x86_64", "dhcp-client": "4.3.6.P1:150000.6.22.1:x86_64", "libcap2": "2.63:150400.3.3.1:x86_64", "libldap-2_5-0": "2.5.20+11:150500.11.38.1:x86_64", "libicu65_1-ledata": "65.1:150200.4.15.1:noarch", "python3-salt": "3006.0:150500.4.68.2:x86_64", "libldap-2_4-2": "2.4.46:150600.25.3.1:x86_64", "trousers": "0.3.15:150600.10.3.1:x86_64", "mozilla-nss-certs": "3.112.3:150400.3.63.1:x86_64", "yast2-packager": "4.6.10:150600.3.3.1:x86_64", "libcurl4": "8.14.1:150600.4.40.1:x86_64", "sssd-krb5-common": "2.10.2:150600.3.41.1:x86_64", "gptfdisk": "1.0.8:150400.1.7:x86_64", "yast2-country": "4.6.7:150600.3.3.2:x86_64", "openSUSE-release-dvd": "15.6:lp156.417.4.1:x86_64", "ibmtss": "2.1.1:150600.3.3.2:x86_64", "libprocps8": "3.3.17:150000.7.42.1:x86_64", "yast2-nfs-client": "4.6.2:150600.1.2:noarch", "libpopt0": "1.16:3.22:x86_64", "procps": "3.3.17:150000.7.42.1:x86_64", "yast2-tune": "4.6.0:150600.1.2:x86_64", "libgcc_s1": "15.2.0+git10201:150000.1.9.1:x86_64", "libfontconfig1": "2.14.2:150600.1.3:x86_64", "yast2-sudo": "4.6.1:150600.1.2:noarch", "libxml2-2": "2.10.3:150500.5.38.1:x86_64", "ethtool": "6.4:150600.7.3.2:x86_64", "libpsl5": "0.20.1:150000.3.3.1:x86_64", "pam-config": "1.1:150600.16.8.1:x86_64", "liblttng-ust0": "2.12.0:1.30:x86_64", "openSUSE-release": "15.6:lp156.417.4.1:x86_64", "samba-client-libs": "4.19.8+git.435.78ced6cf30d:150600.3.21.1:x86_64", "libpmemblk1": "1.11.1:150400.1.10:x86_64", "libctf-nobfd0": "2.45:150100.7.57.1:x86_64", "perl-Digest-MD4": "1.9:1.28:x86_64", "fio": "3.23:150600.18.6:x86_64", "liburing2": "2.1:150400.2.4:x86_64", "vim": "9.2.0110:150500.20.43.1:x86_64", "perf": "6.4.0.git38565.b555487b73:150600.3.20.1:x86_64", "systemd-default-settings": "0.10:150300.3.7.1:noarch", "system-group-hardware": "20170617:150400.24.2.1:noarch", "libjbig2": "2.1:150000.3.5.1:x86_64", "fdupes": "2.3.0:150400.3.3.1:x86_64", "libXi6": "1.7.9:3.2.1:x86_64", "libvulkan1": "1.3.275.0:150600.1.2:x86_64", "libxslt1": "1.1.34:150400.3.16.1:x86_64", "python3-base": "3.6.15:150300.10.109.1:x86_64", "make": "4.2.1:7.3.2:x86_64", "liburcu6": "0.12.1:1.30:x86_64", "libgio-2_0-0": "2.78.6:150600.4.35.1:x86_64", "perl-Net-SSLeay": "1.92:150600.1.2:x86_64", "libmaxminddb0": "1.4.3:150000.1.8.1:x86_64", "libproxy1": "0.5.3:150600.4.6.2:x86_64", "system-user-wwwrun": "20170617:150400.24.2.1:noarch", "libyaml-0-2": "0.1.7:150000.3.4.1:x86_64", "python3-pyasn1": "0.4.2:150000.3.16.1:noarch", "perl-Pod-Coverage": "0.23:1.23:noarch", "terminfo": "6.1:150000.5.30.1:x86_64", "python3-certifi": "2018.1.18:150000.3.6.1:noarch", "perl-HTTP-Negotiate": "6.01:1.23:noarch", "btrfsprogs-udev-rules": "6.5.1:150600.2.4:noarch", "python3-six": "1.14.0:150200.15.1:noarch", "libasan4": "7.5.0+r278197:150000.4.44.1:x86_64", "libsemanage-conf": "3.5:150600.1.48:x86_64", "python3-MarkupSafe": "1.0:1.29:x86_64", "libxcb-dri2-0": "1.13:150000.3.11.1:x86_64", "pv": "1.7.24:150600.3.3:x86_64", "ruby2.5-rubygem-abstract_method": "1.2.1:1.28:x86_64", "busybox": "1.37.0:150500.10.17.1:x86_64", "cracklib": "2.9.11:150600.1.90:x86_64", "yast2-hardware-detection": "4.6.0:150600.1.5:x86_64", "libstdc++6-devel-gcc7": "7.5.0+r278197:150000.4.44.1:x86_64", "glibc-i18ndata": "2.38:150600.14.43.1:noarch", "python3-gobject": "3.42.2:150400.10.23:x86_64", "perl-LWP-Protocol-https": "6.06:150000.3.3.1:noarch", "libext2fs2": "1.47.0:150600.4.6.2:x86_64", "python3-py": "1.10.0:150100.5.15.1:noarch", "Mesa-demo-x": "8.3.0:150000.3.6.1:x86_64", "libsmartcols1": "2.39.3:150600.4.18.1:x86_64", "python3-requests": "2.25.1:150300.3.18.1:noarch", "php8-sqlite": "8.2.30:150600.3.25.1:x86_64", "openssh-common": "9.6p1:150600.6.34.1:x86_64", "ruby2.5-rubygem-cheetah": "0.5.2:1.33:x86_64", "php8-posix": "8.2.30:150600.3.25.1:x86_64", "libgobject-2_0-0": "2.78.6:150600.4.35.1:x86_64", "python3-rtslib-fb": "2.1.75:150500.1.4:noarch", "sharutils": "4.15.2:150600.17.3:x86_64", "libhogweed6": "3.9.1:150600.3.2.1:x86_64", "udev": "254.27:150600.4.62.1:x86_64", "acl": "2.2.52:4.3.1:x86_64", "cryptsetup": "2.7.0:150600.3.3.1:x86_64", "qemu-guest-agent": "8.2.10:150600.3.46.1:x86_64", "libimaevm3": "1.4:150600.7.3:x86_64", "libgdbm4": "1.12:1.418:x86_64", "fonts-config": "20200609+git0.42e2b1b:150600.18.2:noarch", "python3-notify2": "0.3.1:150400.5.68:noarch", "libwrap0": "7.6:1.433:x86_64", "yast2-proxy": "4.6.0:150600.1.2:noarch", "libbrotlicommon1": "1.0.7:150200.3.5.1:x86_64", "xinetd": "2.3.15.4:bp156.3.9:x86_64", "liblogging0": "1.0.6:3.21:x86_64", "yast2-services-manager": "4.6.1:150600.1.2:noarch", "libkeyutils1": "1.6.3:5.6.1:x86_64", "dhcp-server": "4.3.6.P1:150000.6.22.1:x86_64", "libcbor0_10": "0.10.1:150500.1.1:x86_64", "chrony-pool-suse": "4.1:150400.21.8.1:noarch", "perl-base": "5.26.1:150300.17.20.1:x86_64", "libstdc++6-pp": "15.2.0+git10201:150000.1.9.1:x86_64", "iputils": "20221126:150500.3.14.1:x86_64", "libpolkit-gobject-1-0": "121:150500.3.6.1:x86_64", "libzck1": "1.1.16:150600.9.3:x86_64", "ntfsprogs": "2022.5.17:150000.3.21.1:x86_64", "ca-certificates": "2+git20240416.98ae794:150300.4.3.3:noarch", "openssh-server": "9.6p1:150600.6.34.1:x86_64", "diffutils": "3.6:4.3.1:x86_64", "libibmtss2": "2.1.1:150600.3.3.2:x86_64", "blktrace": "1.1.0+git.20170126:3.6.1:x86_64", "docker": "28.5.1_ce:150000.243.1:x86_64", "libssh-config": "0.9.8:150600.11.9.1:x86_64", "libiperf0": "3.19.1:150000.3.15.1:x86_64", "quota": "4.05:3.9.1:x86_64", "yast2-ntp-client": "4.6.0:150600.1.3:noarch", "libnghttp2-14": "1.40.0:150600.23.2:x86_64", "libfido2-1": "1.13.0:150600.10.3:x86_64", "yast2-dhcp-server": "4.6.0:150600.1.2:noarch", "libunistring2": "0.9.10:1.1:x86_64", "cyrus-sasl": "2.1.28:150600.7.14.1:x86_64", "yast2-ftp-server": "4.6.0:150600.1.2:noarch", "libaugeas0": "1.14.1:150600.3.3.1:x86_64", "device-mapper": "2.03.22_1.02.196:150600.3.9.3:x86_64", "libdw1": "0.185:150400.5.8.3:x86_64", "cyrus-sasl-gssapi": "2.1.28:150600.7.14.1:x86_64", "rdma-core": "49.1:150600.2.5:x86_64", "catatonit": "0.2.0:150500.3.3.1:x86_64", "perl-XML-NamespaceSupport": "1.12:1.24:noarch", "libefa1": "49.1:150600.2.5:x86_64", "binutils": "2.45:150100.7.57.1:x86_64", "perl-X500-DN": "0.29:1.22:x86_64", "git-core": "2.51.0:150600.3.15.1:x86_64", "libfstrm0": "0.6.1:150300.9.5.1:x86_64", "system-user-nobody": "20170617:150400.24.2.1:noarch", "libXfixes3": "6.0.0:150400.1.4:x86_64", "libtirpc3": "1.3.4:150300.3.23.1:x86_64", "yast2-perl-bindings": "4.6.0:150600.1.5:x86_64", "libmpx2": "8.2.1+r264010:150000.1.6.4:x86_64", "libasm1": "0.185:150400.5.8.3:x86_64", "libutempter0": "1.1.6:3.42:x86_64", "libxcrypt-devel": "4.4.15:150300.4.7.1:x86_64", "elfutils": "0.185:150400.5.8.3:x86_64", "python3-pyparsing": "2.4.7:150300.3.3.1:noarch", "perl-Devel-Symdump": "2.18:1.24:noarch", "dosfstools": "4.1:3.6.1:x86_64", "python3-M2Crypto": "0.44.0:150600.19.3.1:x86_64", "perl-Try-Tiny": "0.30:1.17:noarch", "libsnappy1": "1.1.8:3.3.1:x86_64", "screen": "4.6.2:150000.5.8.1:x86_64", "libdrm_amdgpu1": "2.4.118:150600.1.4:x86_64", "netcfg": "11.6:150000.3.6.1:noarch", "python3-idna": "2.6:150000.3.6.1:noarch", "perl-WWW-RobotRules": "6.02:1.23:noarch", "libmetalink3": "0.1.3:150000.3.2.1:x86_64", "ruby2.5": "2.5.9:150000.4.54.1:x86_64", "Mesa-libglapi0": "23.3.4:150600.83.3.1:x86_64", "libbsd0": "0.8.7:150600.16.2:x86_64", "python3-apipkg": "2.1.0:150500.1.1:noarch", "libgomp1": "15.2.0+git10201:150000.1.9.1:x86_64", "libtdb1": "1.4.9:150600.1.4:x86_64", "ruby2.5-rubygem-ruby-augeas": "0.5.0:1.31:x86_64", "libxcb-present0": "1.13:150000.3.11.1:x86_64", "targetcli-fb-common": "2.1.54:150600.11.2:noarch", "at-spi2-core": "2.50.0:150600.1.2:x86_64", "perl-HTML-Parser": "3.830.0:150000.3.3.1:x86_64", "libpwquality1": "1.4.5:150600.2.3:x86_64", "logrotate": "3.18.1:150400.3.10.1:x86_64", "gcc7-c++": "7.5.0+r278197:150000.4.44.1:x86_64", "libapparmor1": "3.1.7:150600.5.9.1:x86_64", "python3-looseversion": "1.0.2:150100.3.3.1:noarch", "gcc-c++": "7:3.9.1:x86_64", "libkmod2": "29:150600.13.3.1:x86_64", "aaa_base-extras": "84.87+git20180409.04c9dae:150300.10.28.2:x86_64", "Mesa-libGL1": "23.3.4:150600.83.3.1:x86_64", "libyui16": "4.5.3:150600.6.2.1:x86_64", "python3-PyJWT": "2.4.0:150200.3.8.1:noarch", "php8-xmlwriter": "8.2.30:150600.3.25.1:x86_64", "ruby-solv": "0.7.34:150600.8.19.2:x86_64", "wicked": "0.6.77:150600.11.15.1:x86_64", "perl-XML-Twig": "3.52:3.3.1:noarch", "bind-utils": "9.18.33:150600.3.18.1:x86_64", "sysconfig-netconfig": "0.85.10:150200.15.1:x86_64", "procmail": "3.22:2.34:x86_64", "libfdisk1": "2.39.3:150600.4.18.1:x86_64", "haveged": "1.9.14:150600.11.3.1:x86_64", "exfatprogs": "1.0.4:150300.3.12.1:x86_64", "initviocons": "0.5:1.27:x86_64", "suseconnect-ruby-bindings": "1.13.0:150600.3.11.1:x86_64", "libref_array1": "0.1.5:3.3.1:x86_64", "libmnl0": "1.0.4:1.25:x86_64"} Linux 6.4.0.150600.23.92.default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64 x86_64 GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"gcc (SUSE Linux) 7.5.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "70500", "CONFIG_CC_IS_CLANG": "not set", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_IS_LLVM": "not set", "CONFIG_AS_VERSION": "24500", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24500", "CONFIG_LD_IS_LLD": "not set", "CONFIG_LLD_VERSION": "0", "CONFIG_RUST_IS_AVAILABLE": "not set", "CONFIG_CC_CAN_LINK": "y", "CONFIG_CC_CAN_LINK_STATIC": "not set", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "not set", "CONFIG_TOOLS_SUPPORT_RELR": "not set", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_PAHOLE_VERSION": "125", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-150600.23.92-default\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "y", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "y", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_GENERIC_IRQ_INJECTION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_GENERIC_IRQ_CHIP": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "not set", "CONFIG_NO_HZ_FULL": "y", "CONFIG_CONTEXT_TRACKING_USER": "y", "CONFIG_CONTEXT_TRACKING_USER_FORCE": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "y", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_USERMODE_DRIVER": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "y", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "y", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "not set", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "y", "CONFIG_VIRT_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "y", "CONFIG_PSI_DEFAULT_DISABLED": "y", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_NEED_SRCU_NMI_SAFE": "not set", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_RCU_NOCB_CPU": "y", "CONFIG_RCU_NOCB_CPU_DEFAULT_ALL": "not set", "CONFIG_RCU_LAZY": "not set", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "18", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "15", "CONFIG_PRINTK_INDEX": "y", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC11_NO_ARRAY_BOUNDS": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_NUMA_BALANCING": "y", "CONFIG_NUMA_BALANCING_DEFAULT_ENABLED": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_KMEM": "y", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "y", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "y", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CGROUP_HUGETLB": "y", "CONFIG_CPUSETS": "y", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "y", "CONFIG_CGROUP_DEBUG": "not set", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "y", "CONFIG_BOOT_CONFIG_FORCE": "not set", "CONFIG_BOOT_CONFIG_EMBED": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "y", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_BASE_FULL": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "y", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_KALLSYMS_BASE_RELATIVE": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_DEBUG_RSEQ": "not set", "CONFIG_EMBEDDED": "not set", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_GUEST_PERF_EVENTS": "y", "CONFIG_PC104": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "y", "CONFIG_TRACEPOINTS": "y", "CONFIG_CRASH_CORE": "y", "CONFIG_KEXEC_CORE": "y", "CONFIG_HAVE_IMA_KEXEC": "y", "CONFIG_KEXEC": "y", "CONFIG_KEXEC_FILE": "y", "CONFIG_KEXEC_SIG": "y", "CONFIG_KEXEC_SIG_FORCE": "not set", "CONFIG_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_KEXEC_JUMP": "not set", "CONFIG_CRASH_DUMP": "y", "CONFIG_CRASH_HOTPLUG": "y", "CONFIG_CRASH_MAX_MEMORY_RANGES": "8192", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_DYNAMIC_PHYSICAL_MASK": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_FEATURE_NAMES": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_MPPARSE": "y", "CONFIG_GOLDFISH": "not set", "CONFIG_X86_CPU_RESCTRL": "y", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_NUMACHIP": "not set", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_UV": "y", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "y", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_XXL": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "y", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "y", "CONFIG_XEN_PV": "y", "CONFIG_XEN_512GB": "not set", "CONFIG_XEN_PV_SMP": "y", "CONFIG_XEN_PV_DOM0": "y", "CONFIG_XEN_PVHVM": "y", "CONFIG_XEN_PVHVM_SMP": "y", "CONFIG_XEN_PVHVM_GUEST": "y", "CONFIG_XEN_SAVE_RESTORE": "y", "CONFIG_XEN_DEBUG_FS": "y", "CONFIG_XEN_PVH": "y", "CONFIG_XEN_DOM0": "y", "CONFIG_XEN_PV_MSR_SAFE": "y", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "y", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "y", "CONFIG_ACRN_GUEST": "y", "CONFIG_INTEL_TDX_GUEST": "y", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "not set", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "y", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_TSC": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_PROCESSOR_SELECT": "not set", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "y", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "y", "CONFIG_NR_CPUS_RANGE_BEGIN": "8192", "CONFIG_NR_CPUS_RANGE_END": "8192", "CONFIG_NR_CPUS_DEFAULT": "8192", "CONFIG_NR_CPUS": "8192", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "y", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "y", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "m", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "m", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "y", "CONFIG_VM86": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "m", "CONFIG_X86_CPUID": "m", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_X86_MEM_ENCRYPT": "y", "CONFIG_AMD_MEM_ENCRYPT": "y", "CONFIG_NUMA": "y", "CONFIG_AMD_NUMA": "y", "CONFIG_X86_64_ACPI_NUMA": "y", "CONFIG_NUMA_EMU": "y", "CONFIG_NODES_SHIFT": "10", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_MEMORY_PROBE": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY_DEVICE": "y", "CONFIG_X86_PMEM_LEGACY": "m", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_ARCH_USES_PG_UNCACHED": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "not set", "CONFIG_X86_CET": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_X86_INTEL_TSX_MODE_OFF": "not set", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "y", "CONFIG_X86_SGX": "y", "CONFIG_X86_USER_SHADOW_STACK": "y", "CONFIG_INTEL_TDX_HOST": "y", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "y", "CONFIG_EFI_FAKE_MEMMAP": "not set", "CONFIG_EFI_RUNTIME_MAP": "y", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "y", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "not set", "CONFIG_HZ": "250", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SELECTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_ARCH_HAS_GENERIC_CRASHKERNEL_RESERVATION": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0xa", "CONFIG_ADDRESS_MASKING": "not set", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_BOOTPARAM_HOTPLUG_CPU0": "not set", "CONFIG_DEBUG_HOTPLUG_CPU0": "not set", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_LIVEPATCH": "y", "CONFIG_LIVEPATCH_IPA_CLONES": "y", "CONFIG_CC_HAS_SLS": "not set", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_SPECULATION_MITIGATIONS": "y", "CONFIG_PAGE_TABLE_ISOLATION": "y", "CONFIG_RETPOLINE": "y", "CONFIG_RETHUNK": "y", "CONFIG_CPU_UNRET_ENTRY": "y", "CONFIG_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_CPU_IBPB_ENTRY": "y", "CONFIG_CPU_IBRS_ENTRY": "y", "CONFIG_CPU_SRSO": "y", "CONFIG_GDS_FORCE_MITIGATION": "not set", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_MITIGATION_VMSCAPE": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_ARCH_HIBERNATION_HEADER": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_SUSPEND_SKIP_SYNC": "not set", "CONFIG_HIBERNATE_CALLBACKS": "y", "CONFIG_HIBERNATION": "y", "CONFIG_HIBERNATE_VERIFICATION": "y", "CONFIG_HIBERNATE_VERIFICATION_FORCE": "not set", "CONFIG_HIBERNATION_SNAPSHOT_DEV": "y", "CONFIG_PM_STD_PARTITION": "\\"\\"", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_DPM_WATCHDOG": "y", "CONFIG_DPM_WATCHDOG_TIMEOUT": "60", "CONFIG_PM_TRACE": "y", "CONFIG_PM_TRACE_RTC": "y", "CONFIG_PM_CLK": "y", "CONFIG_PM_GENERIC_DOMAINS": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_PM_GENERIC_DOMAINS_SLEEP": "y", "CONFIG_ENERGY_MODEL": "y", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_TABLE_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "y", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "m", "CONFIG_ACPI_AC": "m", "CONFIG_ACPI_BATTERY": "m", "CONFIG_ACPI_BUTTON": "m", "CONFIG_ACPI_TINY_POWER_BUTTON": "m", "CONFIG_ACPI_TINY_POWER_BUTTON_SIGNAL": "38", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "m", "CONFIG_ACPI_TAD": "m", "CONFIG_ACPI_DOCK": "y", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_IPMI": "m", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "m", "CONFIG_ACPI_THERMAL": "m", "CONFIG_ACPI_PLATFORM_PROFILE": "m", "CONFIG_ACPI_CUSTOM_DSDT_FILE": "\\"\\"", "CONFIG_ACPI_CUSTOM_DSDT": "not set", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "y", "CONFIG_ACPI_PCI_SLOT": "y", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_MEMORY": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "m", "CONFIG_ACPI_HED": "y", "CONFIG_ACPI_CUSTOM_METHOD": "not set", "CONFIG_ACPI_BGRT": "y", "CONFIG_ACPI_REDUCED_HARDWARE_ONLY": "not set", "CONFIG_ACPI_NFIT": "m", "CONFIG_NFIT_SECURITY_DEBUG": "not set", "CONFIG_ACPI_NUMA": "y", "CONFIG_ACPI_HMAT": "y", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "y", "CONFIG_ACPI_APEI_GHES": "y", "CONFIG_ACPI_APEI_PCIEAER": "y", "CONFIG_ACPI_APEI_MEMORY_FAILURE": "y", "CONFIG_ACPI_APEI_EINJ": "m", "CONFIG_ACPI_APEI_ERST_DEBUG": "not set", "CONFIG_ACPI_DPTF": "y", "CONFIG_DPTF_POWER": "m", "CONFIG_DPTF_PCH_FIVR": "m", "CONFIG_ACPI_WATCHDOG": "y", "CONFIG_ACPI_EXTLOG": "m", "CONFIG_ACPI_ADXL": "y", "CONFIG_ACPI_CONFIGFS": "m", "CONFIG_ACPI_PFRUT": "m", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "y", "CONFIG_PMIC_OPREGION": "y", "CONFIG_XPOWER_PMIC_OPREGION": "y", "CONFIG_BXT_WC_PMIC_OPREGION": "y", "CONFIG_TPS68470_PMIC_OPREGION": "y", "CONFIG_ACPI_VIOT": "y", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "not set", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "m", "CONFIG_CPU_FREQ_GOV_USERSPACE": "m", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "m", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "m", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "m", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "m", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "m", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_X86_SPEEDSTEP_LIB": "not set", "CONFIG_CPUFREQ_ARCH_CUR_FREQ": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "y", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "y", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "m", "CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED": "not set", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_PCI_XEN": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_PCI_CNB20LE_QUIRK": "not set", "CONFIG_ISA_BUS": "not set", "CONFIG_ISA_DMA_API": "y", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_HAVE_KVM": "y", "CONFIG_KVM_COMMON": "y", "CONFIG_HAVE_KVM_PFNCACHE": "y", "CONFIG_HAVE_KVM_IRQCHIP": "y", "CONFIG_HAVE_KVM_IRQ_ROUTING": "y", "CONFIG_HAVE_KVM_DIRTY_RING": "y", "CONFIG_HAVE_KVM_DIRTY_RING_TSO": "y", "CONFIG_HAVE_KVM_DIRTY_RING_ACQ_REL": "y", "CONFIG_KVM_MMIO": "y", "CONFIG_KVM_ASYNC_PF": "y", "CONFIG_HAVE_KVM_MSI": "y", "CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT": "y", "CONFIG_KVM_VFIO": "y", "CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT": "y", "CONFIG_KVM_COMPAT": "y", "CONFIG_HAVE_KVM_IRQ_BYPASS": "y", "CONFIG_HAVE_KVM_NO_POLL": "y", "CONFIG_KVM_XFER_TO_GUEST_WORK": "y", "CONFIG_HAVE_KVM_PM_NOTIFIER": "y", "CONFIG_KVM_GENERIC_HARDWARE_ENABLING": "y", "CONFIG_KVM_GENERIC_MMU_NOTIFIER": "y", "CONFIG_KVM_GENERIC_MEMORY_ATTRIBUTES": "y", "CONFIG_KVM_PRIVATE_MEM": "y", "CONFIG_KVM_GENERIC_PRIVATE_MEM": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "m", "CONFIG_KVM_WERROR": "not set", "CONFIG_KVM_SW_PROTECTED_VM": "y", "CONFIG_KVM_INTEL": "m", "CONFIG_X86_SGX_KVM": "y", "CONFIG_KVM_AMD": "m", "CONFIG_KVM_AMD_SEV": "y", "CONFIG_KVM_SMM": "y", "CONFIG_KVM_HYPERV": "y", "CONFIG_KVM_XEN": "not set", "CONFIG_KVM_PROVE_MMU": "not set", "CONFIG_KVM_EXTERNAL_WRITE_TRACKING": "y", "CONFIG_KVM_MAX_NR_VCPUS": "4096", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "y", "CONFIG_STATIC_KEYS_SELFTEST": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_64BIT_ALIGNED_ACCESS": "not set", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_ARCH_WANT_PMD_MKWRITE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_HAVE_RELIABLE_STACKTRACE": "y", "CONFIG_HAVE_ARCH_HASH": "not set", "CONFIG_ISA_BUS_API": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_EPHEMERAL_INODES": "not set", "CONFIG_CPU_NO_EFFICIENT_FFS": "not set", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "y", "CONFIG_ARCH_OPTIONAL_KERNEL_RWX": "not set", "CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_ARCH_HAS_CC_PLATFORM": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_HAVE_ARCH_NODE_DEV_GROUP": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_BASE_SMALL": "0", "CONFIG_MODULE_SIG_FORMAT": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUGFS": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "y", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "y", "CONFIG_MODVERSIONS": "y", "CONFIG_ASM_MODVERSIONS": "y", "CONFIG_MODULE_SRCVERSION_ALL": "y", "CONFIG_MODULE_SIG": "y", "CONFIG_MODULE_SIG_FORCE": "not set", "CONFIG_MODULE_SIG_ALL": "not set", "CONFIG_MODULE_SIG_SHA1": "not set", "CONFIG_MODULE_SIG_SHA224": "not set", "CONFIG_MODULE_SIG_SHA256": "y", "CONFIG_MODULE_SIG_SHA384": "not set", "CONFIG_MODULE_SIG_SHA512": "not set", "CONFIG_MODULE_SIG_HASH": "\\"sha256\\"", "CONFIG_MODULE_COMPRESS_NONE": "y", "CONFIG_MODULE_COMPRESS_GZIP": "not set", "CONFIG_MODULE_COMPRESS_XZ": "not set", "CONFIG_MODULE_COMPRESS_ZSTD": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_RQ_ALLOC_TIME": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "y", "CONFIG_BLK_DEV_INTEGRITY": "y", "CONFIG_BLK_DEV_INTEGRITY_T10": "m", "CONFIG_BLK_DEV_ZONED": "y", "CONFIG_BLK_DEV_THROTTLING": "y", "CONFIG_BLK_DEV_THROTTLING_LOW": "not set", "CONFIG_BLK_WBT": "y", "CONFIG_BLK_WBT_MQ": "y", "CONFIG_BLK_CGROUP_IOLATENCY": "y", "CONFIG_BLK_CGROUP_FC_APPID": "y", "CONFIG_BLK_CGROUP_IOCOST": "y", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_DEBUG_FS_ZONED": "y", "CONFIG_BLK_SED_OPAL": "y", "CONFIG_BLK_INLINE_ENCRYPTION": "y", "CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK": "y", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "y", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "y", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "y", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "y", "CONFIG_UNIXWARE_DISKLABEL": "y", "CONFIG_LDM_PARTITION": "y", "CONFIG_LDM_DEBUG": "not set", "CONFIG_SGI_PARTITION": "y", "CONFIG_ULTRIX_PARTITION": "y", "CONFIG_SUN_PARTITION": "y", "CONFIG_KARMA_PARTITION": "y", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "y", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_PREEMPT_NOTIFIERS": "y", "CONFIG_PADATA": "y", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_ZPOOL": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "y", "CONFIG_ZSWAP_DEFAULT_ON": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO": "y", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD": "not set", "CONFIG_ZSWAP_COMPRESSOR_DEFAULT": "\\"lzo\\"", "CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD": "y", "CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD": "not set", "CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC": "not set", "CONFIG_ZSWAP_ZPOOL_DEFAULT": "\\"zbud\\"", "CONFIG_ZBUD": "y", "CONFIG_Z3FOLD": "m", "CONFIG_ZSMALLOC": "y", "CONFIG_ZSMALLOC_STAT": "not set", "CONFIG_ZSMALLOC_CHAIN_SIZE": "8", "CONFIG_SLAB": "not set", "CONFIG_SLUB": "y", "CONFIG_SLUB_TINY": "not set", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "y", "CONFIG_SLAB_FREELIST_HARDENED": "y", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "y", "CONFIG_COMPAT_BRK": "not set", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_VMEMMAP": "y", "CONFIG_HAVE_FAST_GUP": "y", "CONFIG_ARCH_KEEP_MEMBLOCK": "y", "CONFIG_NUMA_KEEP_MEMINFO": "y", "CONFIG_MEMORY_ISOLATION": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_HAVE_BOOTMEM_INFO_NODE": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE": "y", "CONFIG_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE": "not set", "CONFIG_MEMORY_HOTREMOVE": "y", "CONFIG_MHP_MEMMAP_ON_MEMORY": "y", "CONFIG_SPLIT_PTLOCK_CPUS": "4", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_DEVICE_MIGRATION": "y", "CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION": "y", "CONFIG_ARCH_ENABLE_THP_MIGRATION": "y", "CONFIG_HUGETLB_PAGE_SIZE_VARIABLE": "not set", "CONFIG_CONTIG_ALLOC": "y", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "y", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "65536", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "y", "CONFIG_HWPOISON_INJECT": "m", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "y", "CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS": "y", "CONFIG_TRANSPARENT_HUGEPAGE_MADVISE": "not set", "CONFIG_THP_SWAP": "y", "CONFIG_READ_ONLY_THP_FOR_FS": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_USE_PERCPU_NUMA_NODE_ID": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_FRONTSWAP": "y", "CONFIG_CMA": "y", "CONFIG_CMA_DEBUG": "not set", "CONFIG_CMA_DEBUGFS": "not set", "CONFIG_CMA_SYSFS": "not set", "CONFIG_CMA_AREAS": "19", "CONFIG_MEM_SOFT_DIRTY": "y", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "y", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ARCH_HAS_ZONE_DMA_SET": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_ZONE_DEVICE": "y", "CONFIG_HMM_MIRROR": "y", "CONFIG_GET_FREE_REGION": "y", "CONFIG_DEVICE_PRIVATE": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MAPPING_DIRTY_HELPERS": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "y", "CONFIG_USERFAULTFD": "y", "CONFIG_HAVE_ARCH_USERFAULTFD_WP": "y", "CONFIG_HAVE_ARCH_USERFAULTFD_MINOR": "y", "CONFIG_PTE_MARKER_UFFD_WP": "y", "CONFIG_LRU_GEN": "y", "CONFIG_LRU_GEN_ENABLED": "not set", "CONFIG_LRU_GEN_STATS": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_WANT_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_NET_REDIRECT": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_PACKET": "m", "CONFIG_PACKET_DIAG": "m", "CONFIG_UNIX": "y", "CONFIG_UNIX_SCM": "y", "CONFIG_AF_UNIX_OOB": "not set", "CONFIG_UNIX_DIAG": "m", "CONFIG_TLS": "m", "CONFIG_TLS_DEVICE": "y", "CONFIG_TLS_TOE": "y", "CONFIG_XFRM": "y", "CONFIG_XFRM_OFFLOAD": "y", "CONFIG_XFRM_ALGO": "m", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "m", "CONFIG_XFRM_INTERFACE": "m", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "m", "CONFIG_XFRM_ESP": "m", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XFRM_ESPINTCP": "y", "CONFIG_SMC": "m", "CONFIG_SMC_DIAG": "m", "CONFIG_XDP_SOCKETS": "y", "CONFIG_XDP_SOCKETS_DIAG": "m", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "not set", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "m", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "y", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "m", "CONFIG_NET_UDP_TUNNEL": "m", "CONFIG_NET_FOU": "m", "CONFIG_NET_FOU_IP_TUNNELS": "y", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "m", "CONFIG_INET_ESPINTCP": "y", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "m", "CONFIG_INET_DIAG": "m", "CONFIG_INET_TCP_DIAG": "m", "CONFIG_INET_UDP_DIAG": "m", "CONFIG_INET_RAW_DIAG": "m", "CONFIG_INET_DIAG_DESTROY": "y", "CONFIG_TCP_CONG_ADVANCED": "y", "CONFIG_TCP_CONG_BIC": "m", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_TCP_CONG_WESTWOOD": "m", "CONFIG_TCP_CONG_HTCP": "m", "CONFIG_TCP_CONG_HSTCP": "m", "CONFIG_TCP_CONG_HYBLA": "m", "CONFIG_TCP_CONG_VEGAS": "m", "CONFIG_TCP_CONG_NV": "m", "CONFIG_TCP_CONG_SCALABLE": "m", "CONFIG_TCP_CONG_LP": "m", "CONFIG_TCP_CONG_VENO": "m", "CONFIG_TCP_CONG_YEAH": "m", "CONFIG_TCP_CONG_ILLINOIS": "m", "CONFIG_TCP_CONG_DCTCP": "m", "CONFIG_TCP_CONG_CDG": "m", "CONFIG_TCP_CONG_BBR": "m", "CONFIG_DEFAULT_CUBIC": "y", "CONFIG_DEFAULT_RENO": "not set", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_MD5SIG": "y", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "y", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "m", "CONFIG_INET6_ESP": "m", "CONFIG_INET6_ESP_OFFLOAD": "m", "CONFIG_INET6_ESPINTCP": "y", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "m", "CONFIG_IPV6_ILA": "m", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "m", "CONFIG_IPV6_SIT": "m", "CONFIG_IPV6_SIT_6RD": "y", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "m", "CONFIG_IPV6_FOU": "m", "CONFIG_IPV6_FOU_TUNNEL": "m", "CONFIG_IPV6_MULTIPLE_TABLES": "y", "CONFIG_IPV6_SUBTREES": "y", "CONFIG_IPV6_MROUTE": "y", "CONFIG_IPV6_MROUTE_MULTIPLE_TABLES": "y", "CONFIG_IPV6_PIMSM_V2": "y", "CONFIG_IPV6_SEG6_LWTUNNEL": "y", "CONFIG_IPV6_SEG6_HMAC": "y", "CONFIG_IPV6_SEG6_BPF": "y", "CONFIG_IPV6_RPL_LWTUNNEL": "y", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "y", "CONFIG_MPTCP": "y", "CONFIG_INET_MPTCP_DIAG": "m", "CONFIG_MPTCP_IPV6": "y", "CONFIG_NETWORK_SECMARK": "y", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "m", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "m", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "m", "CONFIG_NETFILTER_NETLINK_ACCT": "m", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "m", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_SECMARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "y", "CONFIG_NF_CONNTRACK_PROCFS": "y", "CONFIG_NF_CONNTRACK_EVENTS": "y", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "y", "CONFIG_NF_CONNTRACK_LABELS": "y", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "m", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "m", "CONFIG_NF_CT_NETLINK_HELPER": "m", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "y", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "m", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "m", "CONFIG_NFT_FIB_INET": "m", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "m", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "m", "CONFIG_NFT_DUP_NETDEV": "m", "CONFIG_NFT_FWD_NETDEV": "m", "CONFIG_NFT_FIB_NETDEV": "m", "CONFIG_NFT_REJECT_NETDEV": "m", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "y", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_SET": "m", "CONFIG_NETFILTER_XT_TARGET_AUDIT": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CONNSECMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "m", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "m", "CONFIG_NETFILTER_XT_TARGET_LED": "m", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "m", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "m", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "m", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "m", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_SECMARK": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "m", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "m", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "m", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "m", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "m", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "m", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "m", "CONFIG_NETFILTER_XT_MATCH_IPVS": "m", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "m", "CONFIG_NETFILTER_XT_MATCH_OSF": "m", "CONFIG_NETFILTER_XT_MATCH_OWNER": "m", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "m", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "m", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "m", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "m", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "m", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "m", "CONFIG_IP_SET_MAX": "256", "CONFIG_IP_SET_BITMAP_IP": "m", "CONFIG_IP_SET_BITMAP_IPMAC": "m", "CONFIG_IP_SET_BITMAP_PORT": "m", "CONFIG_IP_SET_HASH_IP": "m", "CONFIG_IP_SET_HASH_IPMARK": "m", "CONFIG_IP_SET_HASH_IPPORT": "m", "CONFIG_IP_SET_HASH_IPPORTIP": "m", "CONFIG_IP_SET_HASH_IPPORTNET": "m", "CONFIG_IP_SET_HASH_IPMAC": "m", "CONFIG_IP_SET_HASH_MAC": "m", "CONFIG_IP_SET_HASH_NETPORTNET": "m", "CONFIG_IP_SET_HASH_NET": "m", "CONFIG_IP_SET_HASH_NETNET": "m", "CONFIG_IP_SET_HASH_NETPORT": "m", "CONFIG_IP_SET_HASH_NETIFACE": "m", "CONFIG_IP_SET_LIST_SET": "m", "CONFIG_IP_VS": "m", "CONFIG_IP_VS_IPV6": "y", "CONFIG_IP_VS_DEBUG": "not set", "CONFIG_IP_VS_TAB_BITS": "12", "CONFIG_IP_VS_PROTO_TCP": "y", "CONFIG_IP_VS_PROTO_UDP": "y", "CONFIG_IP_VS_PROTO_AH_ESP": "y", "CONFIG_IP_VS_PROTO_ESP": "y", "CONFIG_IP_VS_PROTO_AH": "y", "CONFIG_IP_VS_PROTO_SCTP": "y", "CONFIG_IP_VS_RR": "m", "CONFIG_IP_VS_WRR": "m", "CONFIG_IP_VS_LC": "m", "CONFIG_IP_VS_WLC": "m", "CONFIG_IP_VS_FO": "m", "CONFIG_IP_VS_OVF": "m", "CONFIG_IP_VS_LBLC": "m", "CONFIG_IP_VS_LBLCR": "m", "CONFIG_IP_VS_DH": "m", "CONFIG_IP_VS_SH": "m", "CONFIG_IP_VS_MH": "m", "CONFIG_IP_VS_SED": "m", "CONFIG_IP_VS_NQ": "m", "CONFIG_IP_VS_TWOS": "m", "CONFIG_IP_VS_SH_TAB_BITS": "8", "CONFIG_IP_VS_MH_TAB_INDEX": "12", "CONFIG_IP_VS_FTP": "m", "CONFIG_IP_VS_NFCT": "y", "CONFIG_IP_VS_PE_SIP": "m", "CONFIG_NF_DEFRAG_IPV4": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "m", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "m", "CONFIG_NFT_FIB_IPV4": "m", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "m", "CONFIG_NF_LOG_ARP": "m", "CONFIG_NF_LOG_IPV4": "m", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_SNMP_BASIC": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "m", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "m", "CONFIG_NFT_FIB_IPV6": "m", "CONFIG_NF_DUP_IPV6": "m", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "m", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "m", "CONFIG_IP6_NF_MATCH_RPFILTER": "m", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "m", "CONFIG_IP6_NF_TARGET_HL": "m", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "m", "CONFIG_IP6_NF_TARGET_SYNPROXY": "m", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "m", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "m", "CONFIG_IP6_NF_TARGET_NPT": "m", "CONFIG_NF_DEFRAG_IPV6": "m", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "m", "CONFIG_NFT_BRIDGE_REJECT": "m", "CONFIG_NF_CONNTRACK_BRIDGE": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_BPFILTER": "y", "CONFIG_BPFILTER_UMH": "m", "CONFIG_IP_DCCP": "m", "CONFIG_INET_DCCP_DIAG": "m", "CONFIG_IP_DCCP_CCID2_DEBUG": "not set", "CONFIG_IP_DCCP_CCID3": "y", "CONFIG_IP_DCCP_CCID3_DEBUG": "not set", "CONFIG_IP_DCCP_TFRC_LIB": "y", "CONFIG_IP_DCCP_DEBUG": "not set", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "m", "CONFIG_RDS_RDMA": "m", "CONFIG_RDS_TCP": "m", "CONFIG_RDS_DEBUG": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_IB": "not set", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "m", "CONFIG_ATM_CLIP": "m", "CONFIG_ATM_CLIP_NO_ICMP": "not set", "CONFIG_ATM_LANE": "m", "CONFIG_ATM_MPOA": "m", "CONFIG_ATM_BR2684": "m", "CONFIG_ATM_BR2684_IPFILTER": "not set", "CONFIG_L2TP": "m", "CONFIG_L2TP_DEBUGFS": "m", "CONFIG_L2TP_V3": "y", "CONFIG_L2TP_IP": "m", "CONFIG_L2TP_ETH": "m", "CONFIG_STP": "m", "CONFIG_GARP": "m", "CONFIG_MRP": "m", "CONFIG_BRIDGE": "m", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "y", "CONFIG_BRIDGE_CFM": "y", "CONFIG_NET_DSA": "m", "CONFIG_NET_DSA_TAG_NONE": "m", "CONFIG_NET_DSA_TAG_AR9331": "m", "CONFIG_NET_DSA_TAG_BRCM_COMMON": "m", "CONFIG_NET_DSA_TAG_BRCM": "m", "CONFIG_NET_DSA_TAG_BRCM_LEGACY": "m", "CONFIG_NET_DSA_TAG_BRCM_PREPEND": "m", "CONFIG_NET_DSA_TAG_HELLCREEK": "m", "CONFIG_NET_DSA_TAG_GSWIP": "m", "CONFIG_NET_DSA_TAG_DSA_COMMON": "m", "CONFIG_NET_DSA_TAG_DSA": "m", "CONFIG_NET_DSA_TAG_EDSA": "m", "CONFIG_NET_DSA_TAG_MTK": "m", "CONFIG_NET_DSA_TAG_KSZ": "m", "CONFIG_NET_DSA_TAG_OCELOT": "m", "CONFIG_NET_DSA_TAG_OCELOT_8021Q": "m", "CONFIG_NET_DSA_TAG_QCA": "m", "CONFIG_NET_DSA_TAG_RTL4_A": "m", "CONFIG_NET_DSA_TAG_RTL8_4": "m", "CONFIG_NET_DSA_TAG_RZN1_A5PSW": "m", "CONFIG_NET_DSA_TAG_LAN9303": "m", "CONFIG_NET_DSA_TAG_SJA1105": "m", "CONFIG_NET_DSA_TAG_TRAILER": "m", "CONFIG_NET_DSA_TAG_XRS700X": "m", "CONFIG_VLAN_8021Q": "m", "CONFIG_VLAN_8021Q_GVRP": "y", "CONFIG_VLAN_8021Q_MVRP": "y", "CONFIG_LLC": "m", "CONFIG_LLC2": "m", "CONFIG_ATALK": "not set", "CONFIG_X25": "m", "CONFIG_LAPB": "m", "CONFIG_PHONET": "m", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "m", "CONFIG_6LOWPAN_GHC_UDP": "m", "CONFIG_6LOWPAN_GHC_ICMPV6": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "m", "CONFIG_IEEE802154": "m", "CONFIG_IEEE802154_NL802154_EXPERIMENTAL": "not set", "CONFIG_IEEE802154_SOCKET": "m", "CONFIG_IEEE802154_6LOWPAN": "m", "CONFIG_MAC802154": "m", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "m", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "m", "CONFIG_NET_SCH_ETF": "m", "CONFIG_NET_SCH_MQPRIO_LIB": "m", "CONFIG_NET_SCH_TAPRIO": "m", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "m", "CONFIG_NET_SCH_MQPRIO": "m", "CONFIG_NET_SCH_SKBPRIO": "m", "CONFIG_NET_SCH_CHOKE": "m", "CONFIG_NET_SCH_QFQ": "m", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "m", "CONFIG_NET_SCH_FQ": "m", "CONFIG_NET_SCH_HHF": "m", "CONFIG_NET_SCH_PIE": "m", "CONFIG_NET_SCH_FQ_PIE": "m", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "m", "CONFIG_NET_SCH_ETS": "m", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "m", "CONFIG_NET_CLS_ROUTE4": "m", "CONFIG_NET_CLS_FW": "m", "CONFIG_NET_CLS_U32": "m", "CONFIG_CLS_U32_PERF": "y", "CONFIG_CLS_U32_MARK": "y", "CONFIG_NET_CLS_FLOW": "m", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "m", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "m", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "m", "CONFIG_NET_EMATCH_NBYTE": "m", "CONFIG_NET_EMATCH_U32": "m", "CONFIG_NET_EMATCH_META": "m", "CONFIG_NET_EMATCH_TEXT": "m", "CONFIG_NET_EMATCH_CANID": "m", "CONFIG_NET_EMATCH_IPSET": "m", "CONFIG_NET_EMATCH_IPT": "m", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "m", "CONFIG_GACT_PROB": "y", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "m", "CONFIG_NET_ACT_IPT": "m", "CONFIG_NET_ACT_NAT": "m", "CONFIG_NET_ACT_PEDIT": "m", "CONFIG_NET_ACT_SIMP": "m", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "m", "CONFIG_NET_ACT_MPLS": "m", "CONFIG_NET_ACT_VLAN": "m", "CONFIG_NET_ACT_BPF": "m", "CONFIG_NET_ACT_CONNMARK": "m", "CONFIG_NET_ACT_CTINFO": "m", "CONFIG_NET_ACT_SKBMOD": "m", "CONFIG_NET_ACT_IFE": "m", "CONFIG_NET_ACT_TUNNEL_KEY": "m", "CONFIG_NET_ACT_CT": "m", "CONFIG_NET_ACT_GATE": "m", "CONFIG_NET_IFE_SKBMARK": "m", "CONFIG_NET_IFE_SKBPRIO": "m", "CONFIG_NET_IFE_SKBTCINDEX": "m", "CONFIG_NET_TC_SKB_EXT": "y", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "y", "CONFIG_DNS_RESOLVER": "m", "CONFIG_BATMAN_ADV": "m", "CONFIG_BATMAN_ADV_BATMAN_V": "y", "CONFIG_BATMAN_ADV_BLA": "y", "CONFIG_BATMAN_ADV_DAT": "y", "CONFIG_BATMAN_ADV_NC": "y", "CONFIG_BATMAN_ADV_MCAST": "y", "CONFIG_BATMAN_ADV_DEBUG": "y", "CONFIG_BATMAN_ADV_TRACING": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_OPENVSWITCH_GENEVE": "m", "CONFIG_VSOCKETS": "m", "CONFIG_VSOCKETS_DIAG": "m", "CONFIG_VSOCKETS_LOOPBACK": "m", "CONFIG_VMWARE_VMCI_VSOCKETS": "m", "CONFIG_VIRTIO_VSOCKETS": "m", "CONFIG_VIRTIO_VSOCKETS_COMMON": "m", "CONFIG_HYPERV_VSOCKETS": "m", "CONFIG_NETLINK_DIAG": "m", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "m", "CONFIG_MPLS_IPTUNNEL": "m", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "m", "CONFIG_NET_SWITCHDEV": "y", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "m", "CONFIG_QRTR_SMD": "m", "CONFIG_QRTR_TUN": "m", "CONFIG_QRTR_MHI": "m", "CONFIG_NET_NCSI": "y", "CONFIG_NCSI_OEM_CMD_GET_MAC": "y", "CONFIG_NCSI_OEM_CMD_KEEP_PHY": "y", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "y", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "y", "CONFIG_HAMRADIO": "y", "CONFIG_AX25": "m", "CONFIG_AX25_DAMA_SLAVE": "y", "CONFIG_NETROM": "m", "CONFIG_ROSE": "m", "CONFIG_MKISS": "m", "CONFIG_6PACK": "m", "CONFIG_BPQETHER": "m", "CONFIG_BAYCOM_SER_FDX": "m", "CONFIG_BAYCOM_SER_HDX": "m", "CONFIG_BAYCOM_PAR": "m", "CONFIG_YAM": "m", "CONFIG_CAN": "m", "CONFIG_CAN_RAW": "m", "CONFIG_CAN_BCM": "m", "CONFIG_CAN_GW": "m", "CONFIG_CAN_J1939": "m", "CONFIG_CAN_ISOTP": "m", "CONFIG_BT": "m", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_HS": "y", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "y", "CONFIG_BT_MSFTEXT": "y", "CONFIG_BT_AOSPEXT": "y", "CONFIG_BT_DEBUGFS": "not set", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_INTEL": "m", "CONFIG_BT_BCM": "m", "CONFIG_BT_RTL": "m", "CONFIG_BT_QCA": "m", "CONFIG_BT_MTK": "m", "CONFIG_BT_HCIBTUSB": "m", "CONFIG_BT_HCIBTUSB_AUTOSUSPEND": "y", "CONFIG_BT_HCIBTUSB_POLL_SYNC": "y", "CONFIG_BT_HCIBTUSB_BCM": "y", "CONFIG_BT_HCIBTUSB_MTK": "y", "CONFIG_BT_HCIBTUSB_RTL": "y", "CONFIG_BT_HCIBTSDIO": "m", "CONFIG_BT_HCIUART": "m", "CONFIG_BT_HCIUART_SERDEV": "y", "CONFIG_BT_HCIUART_H4": "y", "CONFIG_BT_HCIUART_NOKIA": "m", "CONFIG_BT_HCIUART_BCSP": "y", "CONFIG_BT_HCIUART_ATH3K": "y", "CONFIG_BT_HCIUART_LL": "y", "CONFIG_BT_HCIUART_3WIRE": "y", "CONFIG_BT_HCIUART_INTEL": "y", "CONFIG_BT_HCIUART_BCM": "y", "CONFIG_BT_HCIUART_RTL": "y", "CONFIG_BT_HCIUART_QCA": "y", "CONFIG_BT_HCIUART_AG6XX": "y", "CONFIG_BT_HCIUART_MRVL": "y", "CONFIG_BT_HCIBCM203X": "m", "CONFIG_BT_HCIBCM4377": "m", "CONFIG_BT_HCIBPA10X": "m", "CONFIG_BT_HCIBFUSB": "m", "CONFIG_BT_HCIVHCI": "m", "CONFIG_BT_MRVL": "m", "CONFIG_BT_MRVL_SDIO": "m", "CONFIG_BT_ATH3K": "m", "CONFIG_BT_MTKSDIO": "m", "CONFIG_BT_MTKUART": "m", "CONFIG_BT_HCIRSI": "m", "CONFIG_BT_VIRTIO": "m", "CONFIG_BT_NXPUART": "m", "CONFIG_AF_RXRPC": "m", "CONFIG_AF_RXRPC_IPV6": "y", "CONFIG_AF_RXRPC_INJECT_LOSS": "not set", "CONFIG_AF_RXRPC_INJECT_RX_DELAY": "not set", "CONFIG_AF_RXRPC_DEBUG": "not set", "CONFIG_RXKAD": "y", "CONFIG_RXPERF": "m", "CONFIG_AF_KCM": "m", "CONFIG_STREAM_PARSER": "y", "CONFIG_MCTP": "y", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WIRELESS_EXT": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_WEXT_SPY": "y", "CONFIG_WEXT_PRIV": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_CERTIFICATION_ONUS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_CFG80211_WEXT_EXPORT": "y", "CONFIG_LIB80211": "m", "CONFIG_LIB80211_CRYPT_WEP": "m", "CONFIG_LIB80211_CRYPT_CCMP": "m", "CONFIG_LIB80211_CRYPT_TKIP": "m", "CONFIG_LIB80211_DEBUG": "not set", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "y", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_DEBUGFS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "m", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "m", "CONFIG_NET_9P": "m", "CONFIG_NET_9P_FD": "m", "CONFIG_NET_9P_VIRTIO": "m", "CONFIG_NET_9P_XEN": "m", "CONFIG_NET_9P_RDMA": "m", "CONFIG_NET_9P_DEBUG": "not set", "CONFIG_CAIF": "m", "CONFIG_CAIF_DEBUG": "not set", "CONFIG_CAIF_NETDEV": "m", "CONFIG_CAIF_USB": "m", "CONFIG_CEPH_LIB": "m", "CONFIG_CEPH_LIB_PRETTYDEBUG": "y", "CONFIG_CEPH_LIB_USE_DNS_RESOLVER": "not set", "CONFIG_NFC": "m", "CONFIG_NFC_DIGITAL": "m", "CONFIG_NFC_NCI": "m", "CONFIG_NFC_NCI_SPI": "not set", "CONFIG_NFC_NCI_UART": "m", "CONFIG_NFC_HCI": "m", "CONFIG_NFC_SHDLC": "y", "CONFIG_NFC_TRF7970A": "not set", "CONFIG_NFC_MEI_PHY": "m", "CONFIG_NFC_SIM": "m", "CONFIG_NFC_PORT100": "m", "CONFIG_NFC_VIRTUAL_NCI": "m", "CONFIG_NFC_FDP": "m", "CONFIG_NFC_FDP_I2C": "m", "CONFIG_NFC_PN544": "m", "CONFIG_NFC_PN544_I2C": "m", "CONFIG_NFC_PN544_MEI": "m", "CONFIG_NFC_PN533": "m", "CONFIG_NFC_PN533_USB": "m", "CONFIG_NFC_PN533_I2C": "m", "CONFIG_NFC_PN532_UART": "m", "CONFIG_NFC_MICROREAD": "m", "CONFIG_NFC_MICROREAD_I2C": "m", "CONFIG_NFC_MICROREAD_MEI": "m", "CONFIG_NFC_MRVL": "m", "CONFIG_NFC_MRVL_USB": "m", "CONFIG_NFC_MRVL_UART": "m", "CONFIG_NFC_MRVL_I2C": "m", "CONFIG_NFC_ST21NFCA": "m", "CONFIG_NFC_ST21NFCA_I2C": "m", "CONFIG_NFC_ST_NCI": "m", "CONFIG_NFC_ST_NCI_I2C": "m", "CONFIG_NFC_ST_NCI_SPI": "m", "CONFIG_NFC_NXP_NCI": "m", "CONFIG_NFC_NXP_NCI_I2C": "m", "CONFIG_NFC_S3FWRN5": "m", "CONFIG_NFC_S3FWRN5_I2C": "m", "CONFIG_NFC_S3FWRN82_UART": "m", "CONFIG_NFC_ST95HF": "m", "CONFIG_PSAMPLE": "m", "CONFIG_NET_IFE": "m", "CONFIG_LWTUNNEL": "y", "CONFIG_LWTUNNEL_BPF": "y", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_SOCK_VALIDATE_XMIT": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "y", "CONFIG_FAILOVER": "m", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_EISA": "y", "CONFIG_EISA": "not set", "CONFIG_HAVE_PCI": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "y", "CONFIG_PCIEAER": "y", "CONFIG_PCIEAER_INJECT": "m", "CONFIG_PCIE_ECRC": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_DPC": "y", "CONFIG_PCIE_PTM": "y", "CONFIG_PCIE_EDR": "y", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "y", "CONFIG_PCI_PF_STUB": "m", "CONFIG_XEN_PCIDEV_FRONTEND": "m", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_DOE": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_P2PDMA": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_PCI_HYPERV": "m", "CONFIG_PCIE_BUS_TUNE_OFF": "not set", "CONFIG_PCIE_BUS_DEFAULT": "y", "CONFIG_PCIE_BUS_SAFE": "not set", "CONFIG_PCIE_BUS_PERFORMANCE": "not set", "CONFIG_PCIE_BUS_PEER2PEER": "not set", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "y", "CONFIG_HOTPLUG_PCI_ACPI_IBM": "m", "CONFIG_HOTPLUG_PCI_CPCI": "y", "CONFIG_HOTPLUG_PCI_CPCI_ZT5550": "m", "CONFIG_HOTPLUG_PCI_CPCI_GENERIC": "m", "CONFIG_HOTPLUG_PCI_SHPC": "y", "CONFIG_VMD": "m", "CONFIG_PCI_HYPERV_INTERFACE": "m", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCIE_DW_PLAT_EP": "not set", "CONFIG_PCI_ENDPOINT": "y", "CONFIG_PCI_ENDPOINT_CONFIGFS": "not set", "CONFIG_PCI_EPF_TEST": "m", "CONFIG_PCI_EPF_NTB": "m", "CONFIG_PCI_EPF_VNTB": "m", "CONFIG_PCI_SW_SWITCHTEC": "m", "CONFIG_CXL_BUS": "m", "CONFIG_CXL_PCI": "m", "CONFIG_CXL_MEM_RAW_COMMANDS": "not set", "CONFIG_CXL_ACPI": "m", "CONFIG_CXL_PMEM": "m", "CONFIG_CXL_MEM": "m", "CONFIG_CXL_PORT": "m", "CONFIG_CXL_SUSPEND": "y", "CONFIG_CXL_REGION": "y", "CONFIG_CXL_REGION_INVALIDATION_TEST": "not set", "CONFIG_PCCARD": "m", "CONFIG_PCMCIA": "not set", "CONFIG_CARDBUS": "y", "CONFIG_YENTA": "m", "CONFIG_YENTA_O2": "y", "CONFIG_YENTA_RICOH": "y", "CONFIG_YENTA_TI": "y", "CONFIG_YENTA_ENE_TUNE": "y", "CONFIG_YENTA_TOSHIBA": "y", "CONFIG_RAPIDIO": "m", "CONFIG_RAPIDIO_TSI721": "m", "CONFIG_RAPIDIO_DISC_TIMEOUT": "30", "CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS": "y", "CONFIG_RAPIDIO_DMA_ENGINE": "y", "CONFIG_RAPIDIO_DEBUG": "y", "CONFIG_RAPIDIO_ENUM_BASIC": "m", "CONFIG_RAPIDIO_CHMAN": "m", "CONFIG_RAPIDIO_MPORT_CDEV": "m", "CONFIG_RAPIDIO_CPS_XX": "m", "CONFIG_RAPIDIO_CPS_GEN2": "m", "CONFIG_RAPIDIO_RXS_GEN3": "m", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "y", "CONFIG_UEVENT_HELPER_PATH": "\\"\\"", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "not set", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_FW_LOADER_DEBUG": "y", "CONFIG_FW_LOADER_PAGED_BUF": "y", "CONFIG_FW_LOADER_SYSFS": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "y", "CONFIG_FW_LOADER_USER_HELPER_FALLBACK": "not set", "CONFIG_FW_LOADER_COMPRESS": "y", "CONFIG_FW_LOADER_COMPRESS_XZ": "y", "CONFIG_FW_LOADER_COMPRESS_ZSTD": "y", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "y", "CONFIG_WANT_DEV_COREDUMP": "y", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_HMEM_REPORTING": "y", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_SYS_HYPERVISOR": "y", "CONFIG_GENERIC_CPU_DEVICES": "not set", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_SOC_BUS": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_REGMAP_SPI": "m", "CONFIG_REGMAP_SPMI": "m", "CONFIG_REGMAP_W1": "m", "CONFIG_REGMAP_MMIO": "m", "CONFIG_REGMAP_IRQ": "y", "CONFIG_REGMAP_SOUNDWIRE": "m", "CONFIG_REGMAP_SOUNDWIRE_MBQ": "m", "CONFIG_REGMAP_SCCB": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "m", "CONFIG_MHI_BUS_DEBUG": "y", "CONFIG_MHI_BUS_PCI_GENERIC": "m", "CONFIG_MHI_BUS_EP": "m", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "m", "CONFIG_EDD_OFF": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "m", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT_FIND": "y", "CONFIG_ISCSI_IBFT": "m", "CONFIG_FW_CFG_SYSFS": "m", "CONFIG_FW_CFG_SYSFS_CMDLINE": "y", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "y", "CONFIG_FW_CS_DSP": "m", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_VARS_PSTORE": "m", "CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE": "y", "CONFIG_EFI_SOFT_RESERVE": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "m", "CONFIG_EFI_CAPSULE_LOADER": "m", "CONFIG_EFI_TEST": "not set", "CONFIG_EFI_DEV_PATH_PARSER": "y", "CONFIG_APPLE_PROPERTIES": "y", "CONFIG_RESET_ATTACK_MITIGATION": "y", "CONFIG_EFI_RCI2_TABLE": "y", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "y", "CONFIG_UNACCEPTED_MEMORY": "y", "CONFIG_EFI_EMBEDDED_FIRMWARE": "y", "CONFIG_EFI_SECRET_KEY": "y", "CONFIG_UEFI_CPER": "y", "CONFIG_UEFI_CPER_X86": "y", "CONFIG_GNSS": "m", "CONFIG_GNSS_SERIAL": "m", "CONFIG_GNSS_MTK_SERIAL": "m", "CONFIG_GNSS_SIRF_SERIAL": "m", "CONFIG_GNSS_UBX_SERIAL": "m", "CONFIG_GNSS_USB": "m", "CONFIG_MTD": "m", "CONFIG_MTD_TESTS": "m", "CONFIG_MTD_AR7_PARTS": "m", "CONFIG_MTD_CMDLINE_PARTS": "not set", "CONFIG_MTD_REDBOOT_PARTS": "m", "CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK": "-1", "CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED": "not set", "CONFIG_MTD_REDBOOT_PARTS_READONLY": "not set", "CONFIG_MTD_BLKDEVS": "m", "CONFIG_MTD_BLOCK": "m", "CONFIG_MTD_BLOCK_RO": "m", "CONFIG_FTL": "m", "CONFIG_NFTL": "m", "CONFIG_NFTL_RW": "y", "CONFIG_INFTL": "m", "CONFIG_RFD_FTL": "m", "CONFIG_SSFDC": "m", "CONFIG_SM_FTL": "not set", "CONFIG_MTD_OOPS": "m", "CONFIG_MTD_PSTORE": "m", "CONFIG_MTD_SWAP": "m", "CONFIG_MTD_PARTITIONED_MASTER": "y", "CONFIG_MTD_CFI": "m", "CONFIG_MTD_JEDECPROBE": "m", "CONFIG_MTD_GEN_PROBE": "m", "CONFIG_MTD_CFI_ADV_OPTIONS": "y", "CONFIG_MTD_CFI_NOSWAP": "y", "CONFIG_MTD_CFI_BE_BYTE_SWAP": "not set", "CONFIG_MTD_CFI_LE_BYTE_SWAP": "not set", "CONFIG_MTD_CFI_GEOMETRY": "y", "CONFIG_MTD_MAP_BANK_WIDTH_1": "y", "CONFIG_MTD_MAP_BANK_WIDTH_2": "y", "CONFIG_MTD_MAP_BANK_WIDTH_4": "y", "CONFIG_MTD_MAP_BANK_WIDTH_8": "y", "CONFIG_MTD_MAP_BANK_WIDTH_16": "y", "CONFIG_MTD_MAP_BANK_WIDTH_32": "y", "CONFIG_MTD_CFI_I1": "y", "CONFIG_MTD_CFI_I2": "y", "CONFIG_MTD_CFI_I4": "y", "CONFIG_MTD_CFI_I8": "y", "CONFIG_MTD_OTP": "y", "CONFIG_MTD_CFI_INTELEXT": "m", "CONFIG_MTD_CFI_AMDSTD": "m", "CONFIG_MTD_CFI_STAA": "m", "CONFIG_MTD_CFI_UTIL": "m", "CONFIG_MTD_RAM": "m", "CONFIG_MTD_ROM": "m", "CONFIG_MTD_ABSENT": "m", "CONFIG_MTD_COMPLEX_MAPPINGS": "y", "CONFIG_MTD_PHYSMAP": "m", "CONFIG_MTD_PHYSMAP_COMPAT": "y", "CONFIG_MTD_PHYSMAP_START": "0x8000000", "CONFIG_MTD_PHYSMAP_LEN": "0", "CONFIG_MTD_PHYSMAP_BANKWIDTH": "2", "CONFIG_MTD_PHYSMAP_GPIO_ADDR": "y", "CONFIG_MTD_SBC_GXX": "m", "CONFIG_MTD_AMD76XROM": "m", "CONFIG_MTD_ICHXROM": "m", "CONFIG_MTD_ESB2ROM": "m", "CONFIG_MTD_CK804XROM": "m", "CONFIG_MTD_SCB2_FLASH": "m", "CONFIG_MTD_NETtel": "m", "CONFIG_MTD_L440GX": "m", "CONFIG_MTD_PCI": "m", "CONFIG_MTD_INTEL_VR_NOR": "m", "CONFIG_MTD_PLATRAM": "m", "CONFIG_MTD_PMC551": "m", "CONFIG_MTD_PMC551_BUGFIX": "y", "CONFIG_MTD_PMC551_DEBUG": "not set", "CONFIG_MTD_DATAFLASH": "not set", "CONFIG_MTD_MCHP23K256": "not set", "CONFIG_MTD_MCHP48L640": "not set", "CONFIG_MTD_SST25L": "not set", "CONFIG_MTD_SLRAM": "m", "CONFIG_MTD_PHRAM": "m", "CONFIG_MTD_MTDRAM": "m", "CONFIG_MTDRAM_TOTAL_SIZE": "4096", "CONFIG_MTDRAM_ERASE_SIZE": "128", "CONFIG_MTD_BLOCK2MTD": "m", "CONFIG_MTD_DOCG3": "m", "CONFIG_BCH_CONST_M": "14", "CONFIG_BCH_CONST_T": "4", "CONFIG_MTD_NAND_CORE": "m", "CONFIG_MTD_ONENAND": "m", "CONFIG_MTD_ONENAND_VERIFY_WRITE": "y", "CONFIG_MTD_ONENAND_GENERIC": "m", "CONFIG_MTD_ONENAND_OTP": "y", "CONFIG_MTD_ONENAND_2X_PROGRAM": "y", "CONFIG_MTD_RAW_NAND": "m", "CONFIG_MTD_NAND_DENALI_PCI": "not set", "CONFIG_MTD_NAND_OMAP_BCH_BUILD": "not set", "CONFIG_MTD_NAND_CAFE": "m", "CONFIG_MTD_NAND_MXIC": "m", "CONFIG_MTD_NAND_GPIO": "m", "CONFIG_MTD_NAND_PLATFORM": "m", "CONFIG_MTD_NAND_ARASAN": "m", "CONFIG_MTD_SM_COMMON": "m", "CONFIG_MTD_NAND_NANDSIM": "m", "CONFIG_MTD_NAND_RICOH": "m", "CONFIG_MTD_NAND_DISKONCHIP": "m", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED": "y", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS": "0", "CONFIG_MTD_NAND_DISKONCHIP_PROBE_HIGH": "y", "CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE": "y", "CONFIG_MTD_SPI_NAND": "m", "CONFIG_MTD_NAND_ECC": "y", "CONFIG_MTD_NAND_ECC_SW_HAMMING": "y", "CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC": "not set", "CONFIG_MTD_NAND_ECC_SW_BCH": "y", "CONFIG_MTD_NAND_ECC_MXIC": "not set", "CONFIG_MTD_LPDDR": "m", "CONFIG_MTD_QINFO_PROBE": "m", "CONFIG_MTD_SPI_NOR": "m", "CONFIG_MTD_SPI_NOR_USE_4K_SECTORS": "y", "CONFIG_MTD_SPI_NOR_SWP_DISABLE": "not set", "CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE": "y", "CONFIG_MTD_SPI_NOR_SWP_KEEP": "not set", "CONFIG_MTD_UBI": "m", "CONFIG_MTD_UBI_WL_THRESHOLD": "4096", "CONFIG_MTD_UBI_BEB_LIMIT": "20", "CONFIG_MTD_UBI_FASTMAP": "not set", "CONFIG_MTD_UBI_GLUEBI": "m", "CONFIG_MTD_UBI_BLOCK": "not set", "CONFIG_MTD_HYPERBUS": "m", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "m", "CONFIG_PARPORT_PC_FIFO": "y", "CONFIG_PARPORT_PC_SUPERIO": "y", "CONFIG_PARPORT_GSC": "not set", "CONFIG_PARPORT_1284": "y", "CONFIG_PARPORT_NOT_PC": "y", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "not set", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "m", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "m", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "m", "CONFIG_ZRAM": "m", "CONFIG_ZRAM_DEF_COMP_LZORLE": "y", "CONFIG_ZRAM_DEF_COMP_ZSTD": "not set", "CONFIG_ZRAM_DEF_COMP_LZ4": "not set", "CONFIG_ZRAM_DEF_COMP_LZO": "not set", "CONFIG_ZRAM_DEF_COMP_LZ4HC": "not set", "CONFIG_ZRAM_DEF_COMP_842": "not set", "CONFIG_ZRAM_DEF_COMP": "\\"lzo-rle\\"", "CONFIG_ZRAM_WRITEBACK": "y", "CONFIG_ZRAM_TRACK_ENTRY_ACTIME": "not set", "CONFIG_ZRAM_MEMORY_TRACKING": "not set", "CONFIG_ZRAM_MULTI_COMP": "y", "CONFIG_BLK_DEV_COW_COMMON": "not set", "CONFIG_BLK_DEV_LOOP": "m", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "m", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "131072", "CONFIG_CDROM_PKTCDVD": "m", "CONFIG_CDROM_PKTCDVD_BUFFERS": "8", "CONFIG_CDROM_PKTCDVD_WCACHE": "y", "CONFIG_ATA_OVER_ETH": "m", "CONFIG_XEN_BLKDEV_FRONTEND": "m", "CONFIG_XEN_BLKDEV_BACKEND": "m", "CONFIG_VIRTIO_BLK": "m", "CONFIG_BLK_DEV_RBD": "m", "CONFIG_BLK_DEV_UBLK": "m", "CONFIG_BLKDEV_UBLK_LEGACY_OPCODES": "y", "CONFIG_BLK_DEV_RNBD": "y", "CONFIG_BLK_DEV_RNBD_CLIENT": "m", "CONFIG_BLK_DEV_RNBD_SERVER": "m", "CONFIG_NVME_KEYRING": "m", "CONFIG_NVME_AUTH": "m", "CONFIG_NVME_CORE": "m", "CONFIG_BLK_DEV_NVME": "m", "CONFIG_NVME_MULTIPATH": "y", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "y", "CONFIG_NVME_FABRICS": "m", "CONFIG_NVME_RDMA": "m", "CONFIG_NVME_FC": "m", "CONFIG_NVME_TCP": "m", "CONFIG_NVME_TCP_TLS": "y", "CONFIG_NVME_HOST_AUTH": "y", "CONFIG_NVME_TARGET": "m", "CONFIG_NVME_TARGET_PASSTHRU": "y", "CONFIG_NVME_TARGET_LOOP": "m", "CONFIG_NVME_TARGET_RDMA": "m", "CONFIG_NVME_TARGET_FC": "m", "CONFIG_NVME_TARGET_FCLOOP": "m", "CONFIG_NVME_TARGET_TCP": "m", "CONFIG_NVME_TARGET_TCP_TLS": "y", "CONFIG_NVME_TARGET_AUTH": "y", "CONFIG_SENSORS_LIS3LV02D": "m", "CONFIG_AD525X_DPOT": "m", "CONFIG_AD525X_DPOT_I2C": "m", "CONFIG_AD525X_DPOT_SPI": "not set", "CONFIG_DUMMY_IRQ": "m", "CONFIG_IBM_ASM": "m", "CONFIG_PHANTOM": "m", "CONFIG_TIFM_CORE": "m", "CONFIG_TIFM_7XX1": "m", "CONFIG_ICS932S401": "m", "CONFIG_ENCLOSURE_SERVICES": "m", "CONFIG_SGI_XP": "m", "CONFIG_HP_ILO": "m", "CONFIG_SGI_GRU": "m", "CONFIG_SGI_GRU_DEBUG": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "m", "CONFIG_SENSORS_TSL2550": "m", "CONFIG_SENSORS_BH1770": "m", "CONFIG_SENSORS_APDS990X": "m", "CONFIG_HMC6352": "m", "CONFIG_DS1682": "m", "CONFIG_VMWARE_BALLOON": "m", "CONFIG_LATTICE_ECP3_CONFIG": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "m", "CONFIG_PCI_ENDPOINT_TEST": "m", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_MISC_RTSX": "m", "CONFIG_C2PORT": "m", "CONFIG_C2PORT_DURAMAR_2150": "m", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_AT25": "not set", "CONFIG_EEPROM_LEGACY": "m", "CONFIG_EEPROM_MAX6875": "m", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_93XX46": "not set", "CONFIG_EEPROM_IDT_89HPESX": "m", "CONFIG_EEPROM_EE1004": "m", "CONFIG_CB710_CORE": "m", "CONFIG_CB710_DEBUG": "not set", "CONFIG_CB710_DEBUG_ASSUMPTIONS": "y", "CONFIG_TI_ST": "m", "CONFIG_SENSORS_LIS3_I2C": "m", "CONFIG_ALTERA_STAPL": "m", "CONFIG_INTEL_MEI": "m", "CONFIG_INTEL_MEI_ME": "m", "CONFIG_INTEL_MEI_TXE": "m", "CONFIG_INTEL_MEI_GSC": "m", "CONFIG_INTEL_MEI_HDCP": "m", "CONFIG_INTEL_MEI_PXP": "m", "CONFIG_INTEL_MEI_GSC_PROXY": "m", "CONFIG_VMWARE_VMCI": "m", "CONFIG_GENWQE": "m", "CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY": "0", "CONFIG_ECHO": "m", "CONFIG_BCM_VK": "m", "CONFIG_BCM_VK_TTY": "y", "CONFIG_MISC_ALCOR_PCI": "m", "CONFIG_MISC_RTSX_PCI": "m", "CONFIG_MISC_RTSX_USB": "m", "CONFIG_UACCE": "m", "CONFIG_PVPANIC": "y", "CONFIG_PVPANIC_MMIO": "m", "CONFIG_PVPANIC_PCI": "m", "CONFIG_GP_PCI1XXXX": "m", "CONFIG_SCSI_MOD": "m", "CONFIG_RAID_ATTRS": "m", "CONFIG_SCSI_COMMON": "m", "CONFIG_SCSI": "m", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_NETLINK": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "m", "CONFIG_CHR_DEV_ST": "m", "CONFIG_BLK_DEV_SR": "m", "CONFIG_CHR_DEV_SG": "m", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "m", "CONFIG_SCSI_ENCLOSURE": "m", "CONFIG_SCSI_CONSTANTS": "y", "CONFIG_SCSI_LOGGING": "y", "CONFIG_SCSI_SCAN_ASYNC": "y", "CONFIG_SCSI_SPI_ATTRS": "m", "CONFIG_SCSI_FC_ATTRS": "m", "CONFIG_SCSI_ISCSI_ATTRS": "m", "CONFIG_SCSI_SAS_ATTRS": "m", "CONFIG_SCSI_SAS_LIBSAS": "m", "CONFIG_SCSI_SAS_ATA": "y", "CONFIG_SCSI_SAS_HOST_SMP": "y", "CONFIG_SCSI_SRP_ATTRS": "m", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "m", "CONFIG_ISCSI_BOOT_SYSFS": "m", "CONFIG_SCSI_CXGB3_ISCSI": "m", "CONFIG_SCSI_CXGB4_ISCSI": "m", "CONFIG_SCSI_BNX2_ISCSI": "m", "CONFIG_SCSI_BNX2X_FCOE": "m", "CONFIG_BE2ISCSI": "m", "CONFIG_BLK_DEV_3W_XXXX_RAID": "m", "CONFIG_SCSI_HPSA": "m", "CONFIG_SCSI_3W_9XXX": "m", "CONFIG_SCSI_3W_SAS": "m", "CONFIG_SCSI_ACARD": "m", "CONFIG_SCSI_AACRAID": "m", "CONFIG_SCSI_AIC7XXX": "m", "CONFIG_AIC7XXX_CMDS_PER_DEVICE": "32", "CONFIG_AIC7XXX_RESET_DELAY_MS": "15000", "CONFIG_AIC7XXX_DEBUG_ENABLE": "not set", "CONFIG_AIC7XXX_DEBUG_MASK": "0", "CONFIG_AIC7XXX_REG_PRETTY_PRINT": "y", "CONFIG_SCSI_AIC79XX": "m", "CONFIG_AIC79XX_CMDS_PER_DEVICE": "32", "CONFIG_AIC79XX_RESET_DELAY_MS": "5000", "CONFIG_AIC79XX_DEBUG_ENABLE": "not set", "CONFIG_AIC79XX_DEBUG_MASK": "0", "CONFIG_AIC79XX_REG_PRETTY_PRINT": "y", "CONFIG_SCSI_AIC94XX": "m", "CONFIG_AIC94XX_DEBUG": "not set", "CONFIG_SCSI_MVSAS": "m", "CONFIG_SCSI_MVSAS_DEBUG": "not set", "CONFIG_SCSI_MVSAS_TASKLET": "y", "CONFIG_SCSI_MVUMI": "m", "CONFIG_SCSI_ADVANSYS": "m", "CONFIG_SCSI_ARCMSR": "m", "CONFIG_SCSI_ESAS2R": "m", "CONFIG_MEGARAID_NEWGEN": "y", "CONFIG_MEGARAID_MM": "m", "CONFIG_MEGARAID_MAILBOX": "m", "CONFIG_MEGARAID_LEGACY": "m", "CONFIG_MEGARAID_SAS": "m", "CONFIG_SCSI_MPT3SAS": "m", "CONFIG_SCSI_MPT2SAS_MAX_SGE": "128", "CONFIG_SCSI_MPT3SAS_MAX_SGE": "128", "CONFIG_SCSI_MPT2SAS": "m", "CONFIG_SCSI_MPI3MR": "m", "CONFIG_SCSI_SMARTPQI": "m", "CONFIG_SCSI_HPTIOP": "m", "CONFIG_SCSI_BUSLOGIC": "m", "CONFIG_SCSI_FLASHPOINT": "not set", "CONFIG_SCSI_MYRB": "m", "CONFIG_SCSI_MYRS": "m", "CONFIG_VMWARE_PVSCSI": "m", "CONFIG_XEN_SCSI_FRONTEND": "m", "CONFIG_HYPERV_STORAGE": "m", "CONFIG_LIBFC": "m", "CONFIG_LIBFCOE": "m", "CONFIG_FCOE": "m", "CONFIG_FCOE_FNIC": "m", "CONFIG_SCSI_SNIC": "m", "CONFIG_SCSI_SNIC_DEBUG_FS": "y", "CONFIG_SCSI_DMX3191D": "m", "CONFIG_SCSI_FDOMAIN": "m", "CONFIG_SCSI_FDOMAIN_PCI": "m", "CONFIG_SCSI_ISCI": "m", "CONFIG_SCSI_IPS": "m", "CONFIG_SCSI_INITIO": "m", "CONFIG_SCSI_INIA100": "m", "CONFIG_SCSI_PPA": "m", "CONFIG_SCSI_IMM": "m", "CONFIG_SCSI_IZIP_EPP16": "not set", "CONFIG_SCSI_IZIP_SLOW_CTR": "not set", "CONFIG_SCSI_STEX": "m", "CONFIG_SCSI_SYM53C8XX_2": "m", "CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE": "1", "CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS": "16", "CONFIG_SCSI_SYM53C8XX_MAX_TAGS": "64", "CONFIG_SCSI_SYM53C8XX_MMIO": "y", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "m", "CONFIG_SCSI_QLA_FC": "m", "CONFIG_TCM_QLA2XXX": "m", "CONFIG_TCM_QLA2XXX_DEBUG": "not set", "CONFIG_SCSI_QLA_ISCSI": "m", "CONFIG_QEDI": "m", "CONFIG_QEDF": "m", "CONFIG_SCSI_LPFC": "m", "CONFIG_SCSI_LPFC_DEBUG_FS": "not set", "CONFIG_SCSI_EFCT": "m", "CONFIG_SCSI_DC395x": "m", "CONFIG_SCSI_AM53C974": "m", "CONFIG_SCSI_WD719X": "m", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "m", "CONFIG_SCSI_PM8001": "m", "CONFIG_SCSI_BFA_FC": "m", "CONFIG_SCSI_VIRTIO": "m", "CONFIG_SCSI_CHELSIO_FCOE": "m", "CONFIG_SCSI_DH": "y", "CONFIG_SCSI_DH_RDAC": "m", "CONFIG_SCSI_DH_HP_SW": "m", "CONFIG_SCSI_DH_EMC": "m", "CONFIG_SCSI_DH_ALUA": "m", "CONFIG_ATA": "m", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "y", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "m", "CONFIG_SATA_MOBILE_LPM_POLICY": "0", "CONFIG_SATA_AHCI_PLATFORM": "m", "CONFIG_AHCI_DWC": "m", "CONFIG_SATA_INIC162X": "m", "CONFIG_SATA_ACARD_AHCI": "m", "CONFIG_SATA_SIL24": "m", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "m", "CONFIG_SATA_QSTOR": "m", "CONFIG_SATA_SX4": "m", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "m", "CONFIG_SATA_DWC": "not set", "CONFIG_SATA_MV": "m", "CONFIG_SATA_NV": "m", "CONFIG_SATA_PROMISE": "m", "CONFIG_SATA_SIL": "m", "CONFIG_SATA_SIS": "m", "CONFIG_SATA_SVW": "m", "CONFIG_SATA_ULI": "m", "CONFIG_SATA_VIA": "m", "CONFIG_SATA_VITESSE": "m", "CONFIG_PATA_ALI": "m", "CONFIG_PATA_AMD": "m", "CONFIG_PATA_ARTOP": "m", "CONFIG_PATA_ATIIXP": "m", "CONFIG_PATA_ATP867X": "m", "CONFIG_PATA_CMD64X": "m", "CONFIG_PATA_CYPRESS": "m", "CONFIG_PATA_EFAR": "m", "CONFIG_PATA_HPT366": "m", "CONFIG_PATA_HPT37X": "m", "CONFIG_PATA_HPT3X2N": "m", "CONFIG_PATA_HPT3X3": "m", "CONFIG_PATA_HPT3X3_DMA": "not set", "CONFIG_PATA_IT8213": "m", "CONFIG_PATA_IT821X": "m", "CONFIG_PATA_JMICRON": "m", "CONFIG_PATA_MARVELL": "m", "CONFIG_PATA_NETCELL": "m", "CONFIG_PATA_NINJA32": "m", "CONFIG_PATA_NS87415": "m", "CONFIG_PATA_OLDPIIX": "m", "CONFIG_PATA_OPTIDMA": "m", "CONFIG_PATA_PDC2027X": "m", "CONFIG_PATA_PDC_OLD": "m", "CONFIG_PATA_RADISYS": "m", "CONFIG_PATA_RDC": "m", "CONFIG_PATA_SCH": "m", "CONFIG_PATA_SERVERWORKS": "m", "CONFIG_PATA_SIL680": "m", "CONFIG_PATA_SIS": "m", "CONFIG_PATA_TOSHIBA": "m", "CONFIG_PATA_TRIFLEX": "m", "CONFIG_PATA_VIA": "m", "CONFIG_PATA_WINBOND": "m", "CONFIG_PATA_CMD640_PCI": "m", "CONFIG_PATA_MPIIX": "m", "CONFIG_PATA_NS87410": "m", "CONFIG_PATA_OPTI": "m", "CONFIG_PATA_RZ1000": "m", "CONFIG_PATA_PARPORT": "m", "CONFIG_PATA_PARPORT_ATEN": "m", "CONFIG_PATA_PARPORT_BPCK": "m", "CONFIG_PATA_PARPORT_BPCK6": "m", "CONFIG_PATA_PARPORT_COMM": "m", "CONFIG_PATA_PARPORT_DSTR": "m", "CONFIG_PATA_PARPORT_FIT2": "m", "CONFIG_PATA_PARPORT_FIT3": "m", "CONFIG_PATA_PARPORT_EPAT": "m", "CONFIG_PATA_PARPORT_EPATC8": "y", "CONFIG_PATA_PARPORT_EPIA": "m", "CONFIG_PATA_PARPORT_FRIQ": "m", "CONFIG_PATA_PARPORT_FRPW": "m", "CONFIG_PATA_PARPORT_KBIC": "m", "CONFIG_PATA_PARPORT_KTTI": "m", "CONFIG_PATA_PARPORT_ON20": "m", "CONFIG_PATA_PARPORT_ON26": "m", "CONFIG_PATA_ACPI": "m", "CONFIG_ATA_GENERIC": "m", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "m", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "m", "CONFIG_MD_RAID0": "m", "CONFIG_MD_RAID1": "m", "CONFIG_MD_RAID10": "m", "CONFIG_MD_RAID456": "m", "CONFIG_MD_MULTIPATH": "not set", "CONFIG_MD_FAULTY": "m", "CONFIG_MD_CLUSTER": "m", "CONFIG_BCACHE": "m", "CONFIG_BCACHE_DEBUG": "not set", "CONFIG_BCACHE_ASYNC_REGISTRATION": "y", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "m", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "m", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "m", "CONFIG_DM_CRYPT": "m", "CONFIG_DM_SNAPSHOT": "m", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "m", "CONFIG_DM_CACHE_SMQ": "m", "CONFIG_DM_WRITECACHE": "m", "CONFIG_DM_EBS": "m", "CONFIG_DM_ERA": "m", "CONFIG_DM_CLONE": "m", "CONFIG_DM_MIRROR": "m", "CONFIG_DM_LOG_USERSPACE": "m", "CONFIG_DM_RAID": "m", "CONFIG_DM_ZERO": "m", "CONFIG_DM_MULTIPATH": "m", "CONFIG_DM_MULTIPATH_QL": "m", "CONFIG_DM_MULTIPATH_ST": "m", "CONFIG_DM_MULTIPATH_HST": "m", "CONFIG_DM_MULTIPATH_IOA": "m", "CONFIG_DM_DELAY": "m", "CONFIG_DM_DUST": "m", "CONFIG_DM_UEVENT": "y", "CONFIG_DM_FLAKEY": "m", "CONFIG_DM_VERITY": "m", "CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG": "y", "CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING": "y", "CONFIG_DM_VERITY_FEC": "y", "CONFIG_DM_SWITCH": "m", "CONFIG_DM_LOG_WRITES": "m", "CONFIG_DM_INTEGRITY": "m", "CONFIG_DM_ZONED": "m", "CONFIG_DM_AUDIT": "y", "CONFIG_TARGET_CORE": "m", "CONFIG_TCM_IBLOCK": "m", "CONFIG_TCM_FILEIO": "m", "CONFIG_TCM_PSCSI": "m", "CONFIG_TCM_USER2": "m", "CONFIG_LOOPBACK_TARGET": "m", "CONFIG_TCM_FC": "m", "CONFIG_ISCSI_TARGET": "m", "CONFIG_ISCSI_TARGET_CXGB4": "m", "CONFIG_SBP_TARGET": "m", "CONFIG_REMOTE_TARGET": "m", "CONFIG_FUSION": "y", "CONFIG_FUSION_SPI": "m", "CONFIG_FUSION_FC": "m", "CONFIG_FUSION_SAS": "m", "CONFIG_FUSION_MAX_SGE": "128", "CONFIG_FUSION_CTL": "m", "CONFIG_FUSION_LAN": "m", "CONFIG_FUSION_LOGGING": "not set", "CONFIG_FIREWIRE": "m", "CONFIG_FIREWIRE_OHCI": "m", "CONFIG_FIREWIRE_SBP2": "m", "CONFIG_FIREWIRE_NET": "m", "CONFIG_FIREWIRE_NOSY": "m", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "m", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "m", "CONFIG_WIREGUARD_DEBUG": "not set", "CONFIG_EQUALIZER": "m", "CONFIG_NET_FC": "y", "CONFIG_IFB": "m", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "m", "CONFIG_MACVTAP": "m", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "m", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "m", "CONFIG_BAREUDP": "m", "CONFIG_GTP": "m", "CONFIG_AMT": "m", "CONFIG_MACSEC": "m", "CONFIG_NETCONSOLE": "m", "CONFIG_NETCONSOLE_DYNAMIC": "y", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_NTB_NETDEV": "m", "CONFIG_RIONET": "m", "CONFIG_RIONET_TX_SIZE": "128", "CONFIG_RIONET_RX_SIZE": "128", "CONFIG_TUN": "m", "CONFIG_TAP": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "m", "CONFIG_VIRTIO_NET": "m", "CONFIG_NLMON": "m", "CONFIG_NET_VRF": "m", "CONFIG_VSOCKMON": "m", "CONFIG_MHI_NET": "m", "CONFIG_SUNGEM_PHY": "m", "CONFIG_ARCNET": "not set", "CONFIG_ATM_DRIVERS": "y", "CONFIG_ATM_DUMMY": "m", "CONFIG_ATM_TCP": "m", "CONFIG_ATM_LANAI": "m", "CONFIG_ATM_ENI": "m", "CONFIG_ATM_ENI_DEBUG": "not set", "CONFIG_ATM_ENI_TUNE_BURST": "y", "CONFIG_ATM_ENI_BURST_TX_16W": "y", "CONFIG_ATM_ENI_BURST_TX_8W": "y", "CONFIG_ATM_ENI_BURST_TX_4W": "y", "CONFIG_ATM_ENI_BURST_TX_2W": "y", "CONFIG_ATM_ENI_BURST_RX_16W": "y", "CONFIG_ATM_ENI_BURST_RX_8W": "y", "CONFIG_ATM_ENI_BURST_RX_4W": "y", "CONFIG_ATM_ENI_BURST_RX_2W": "y", "CONFIG_ATM_NICSTAR": "m", "CONFIG_ATM_NICSTAR_USE_SUNI": "y", "CONFIG_ATM_NICSTAR_USE_IDT77105": "y", "CONFIG_ATM_IDT77252": "m", "CONFIG_ATM_IDT77252_DEBUG": "not set", "CONFIG_ATM_IDT77252_RCV_ALL": "not set", "CONFIG_ATM_IDT77252_USE_SUNI": "y", "CONFIG_ATM_IA": "m", "CONFIG_ATM_IA_DEBUG": "not set", "CONFIG_ATM_FORE200E": "m", "CONFIG_ATM_FORE200E_USE_TASKLET": "y", "CONFIG_ATM_FORE200E_TX_RETRY": "16", "CONFIG_ATM_FORE200E_DEBUG": "0", "CONFIG_ATM_HE": "m", "CONFIG_ATM_HE_USE_SUNI": "y", "CONFIG_ATM_SOLOS": "m", "CONFIG_CAIF_DRIVERS": "y", "CONFIG_CAIF_TTY": "m", "CONFIG_CAIF_VIRTIO": "m", "CONFIG_B53": "m", "CONFIG_B53_SPI_DRIVER": "not set", "CONFIG_B53_MDIO_DRIVER": "not set", "CONFIG_B53_MMAP_DRIVER": "not set", "CONFIG_B53_SRAB_DRIVER": "not set", "CONFIG_B53_SERDES": "not set", "CONFIG_NET_DSA_BCM_SF2": "m", "CONFIG_NET_DSA_LOOP": "m", "CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK": "m", "CONFIG_NET_DSA_LANTIQ_GSWIP": "m", "CONFIG_NET_DSA_MT7530": "m", "CONFIG_NET_DSA_MT7530_MDIO": "m", "CONFIG_NET_DSA_MT7530_MMIO": "m", "CONFIG_NET_DSA_MV88E6060": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_SPI": "m", "CONFIG_NET_DSA_MICROCHIP_KSZ_PTP": "y", "CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI": "m", "CONFIG_NET_DSA_MV88E6XXX": "m", "CONFIG_NET_DSA_MV88E6XXX_PTP": "y", "CONFIG_NET_DSA_MSCC_FELIX_DSA_LIB": "m", "CONFIG_NET_DSA_MSCC_OCELOT_EXT": "m", "CONFIG_NET_DSA_MSCC_SEVILLE": "m", "CONFIG_NET_DSA_AR9331": "m", "CONFIG_NET_DSA_QCA8K": "m", "CONFIG_NET_DSA_QCA8K_LEDS_SUPPORT": "y", "CONFIG_NET_DSA_SJA1105": "m", "CONFIG_NET_DSA_SJA1105_PTP": "y", "CONFIG_NET_DSA_SJA1105_TAS": "y", "CONFIG_NET_DSA_SJA1105_VL": "y", "CONFIG_NET_DSA_XRS700X": "m", "CONFIG_NET_DSA_XRS700X_I2C": "m", "CONFIG_NET_DSA_XRS700X_MDIO": "m", "CONFIG_NET_DSA_REALTEK": "m", "CONFIG_NET_DSA_REALTEK_RTL8365MB": "not set", "CONFIG_NET_DSA_REALTEK_RTL8366RB": "not set", "CONFIG_NET_DSA_SMSC_LAN9303": "m", "CONFIG_NET_DSA_SMSC_LAN9303_I2C": "m", "CONFIG_NET_DSA_SMSC_LAN9303_MDIO": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX_SPI": "m", "CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM": "m", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "m", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "m", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "m", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "m", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "m", "CONFIG_ACENIC_OMIT_TIGON_I": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "m", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "m", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "m", "CONFIG_AMD_XGBE_DCB": "y", "CONFIG_AMD_XGBE_HAVE_ECC": "y", "CONFIG_PDS_CORE": "m", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "m", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_SPI_AX88796C": "m", "CONFIG_SPI_AX88796C_COMPRESSION": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "m", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "m", "CONFIG_B44_PCI_AUTOSELECT": "y", "CONFIG_B44_PCICORE_AUTOSELECT": "y", "CONFIG_B44_PCI": "y", "CONFIG_BCMGENET": "m", "CONFIG_BNX2": "m", "CONFIG_CNIC": "m", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "m", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_DCB": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "m", "CONFIG_LIQUIDIO": "m", "CONFIG_LIQUIDIO_VF": "m", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "m", "CONFIG_CHELSIO_T1_1G": "y", "CONFIG_CHELSIO_T3": "m", "CONFIG_CHELSIO_T4": "m", "CONFIG_CHELSIO_T4_DCB": "y", "CONFIG_CHELSIO_T4_FCOE": "y", "CONFIG_CHELSIO_T4VF": "m", "CONFIG_CHELSIO_LIB": "m", "CONFIG_CHELSIO_INLINE_CRYPTO": "y", "CONFIG_CRYPTO_DEV_CHELSIO_TLS": "m", "CONFIG_CHELSIO_IPSEC_INLINE": "m", "CONFIG_CHELSIO_TLS_DEVICE": "m", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "m", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DM9051": "m", "CONFIG_DNET": "m", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "y", "CONFIG_DE2104X": "m", "CONFIG_DE2104X_DSL": "0", "CONFIG_TULIP": "m", "CONFIG_TULIP_MWI": "not set", "CONFIG_TULIP_MMIO": "not set", "CONFIG_TULIP_NAPI": "y", "CONFIG_TULIP_NAPI_HW_MITIGATION": "y", "CONFIG_WINBOND_840": "m", "CONFIG_DM9102": "m", "CONFIG_ULI526X": "m", "CONFIG_PCMCIA_XIRCOM": "m", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "m", "CONFIG_SUNDANCE_MMIO": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "m", "CONFIG_BE2NET_HWMON": "y", "CONFIG_BE2NET_BE2": "y", "CONFIG_BE2NET_BE3": "y", "CONFIG_BE2NET_LANCER": "y", "CONFIG_BE2NET_SKYHAWK": "y", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "m", "CONFIG_TSNEP_SELFTESTS": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_CORE": "m", "CONFIG_FUN_ETH": "m", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "m", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "m", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "m", "CONFIG_E1000": "m", "CONFIG_E1000E": "m", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "m", "CONFIG_IGB_HWMON": "y", "CONFIG_IGB_DCA": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "m", "CONFIG_IXGBE_HWMON": "y", "CONFIG_IXGBE_DCA": "y", "CONFIG_IXGBE_DCB": "y", "CONFIG_IXGBE_IPSEC": "y", "CONFIG_IXGBEVF": "m", "CONFIG_IXGBEVF_IPSEC": "y", "CONFIG_I40E": "m", "CONFIG_I40E_DCB": "y", "CONFIG_IAVF": "m", "CONFIG_I40EVF": "m", "CONFIG_ICE": "m", "CONFIG_ICE_HWMON": "y", "CONFIG_ICE_SWITCHDEV": "y", "CONFIG_ICE_HWTS": "y", "CONFIG_FM10K": "m", "CONFIG_IGC": "m", "CONFIG_IDPF": "m", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_ADI": "y", "CONFIG_ADIN1110": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "y", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "m", "CONFIG_PRESTERA": "m", "CONFIG_PRESTERA_PCI": "m", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "m", "CONFIG_MLX4_EN_DCB": "y", "CONFIG_MLX4_CORE": "m", "CONFIG_MLX4_DEBUG": "y", "CONFIG_MLX4_CORE_GEN2": "y", "CONFIG_MLX5_CORE": "m", "CONFIG_MLX5_FPGA": "y", "CONFIG_MLX5_CORE_EN": "y", "CONFIG_MLX5_EN_ARFS": "y", "CONFIG_MLX5_EN_RXNFC": "y", "CONFIG_MLX5_MPFS": "y", "CONFIG_MLX5_ESWITCH": "y", "CONFIG_MLX5_BRIDGE": "y", "CONFIG_MLX5_CLS_ACT": "y", "CONFIG_MLX5_TC_CT": "y", "CONFIG_MLX5_TC_SAMPLE": "y", "CONFIG_MLX5_CORE_EN_DCB": "y", "CONFIG_MLX5_CORE_IPOIB": "y", "CONFIG_MLX5_MACSEC": "y", "CONFIG_MLX5_EN_IPSEC": "y", "CONFIG_MLX5_EN_TLS": "y", "CONFIG_MLX5_SW_STEERING": "y", "CONFIG_MLX5_SF": "y", "CONFIG_MLX5_SF_MANAGER": "y", "CONFIG_MLX5_DPLL": "m", "CONFIG_MLXSW_CORE": "m", "CONFIG_MLXSW_CORE_HWMON": "y", "CONFIG_MLXSW_CORE_THERMAL": "y", "CONFIG_MLXSW_PCI": "m", "CONFIG_MLXSW_I2C": "m", "CONFIG_MLXSW_SPECTRUM": "m", "CONFIG_MLXSW_SPECTRUM_DCB": "y", "CONFIG_MLXSW_MINIMAL": "m", "CONFIG_MLXFW": "m", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8842": "m", "CONFIG_KS8851": "not set", "CONFIG_KS8851_MLL": "m", "CONFIG_KSZ884X_PCI": "m", "CONFIG_NET_VENDOR_MICROCHIP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_MSCC_OCELOT_SWITCH_LIB": "m", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_MICROSOFT_MANA": "m", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "m", "CONFIG_MYRI10GE_DCA": "y", "CONFIG_FEALNX": "m", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "m", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "m", "CONFIG_NS83820": "m", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "m", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "m", "CONFIG_NFP_APP_FLOWER": "y", "CONFIG_NFP_APP_ABM_NIC": "y", "CONFIG_NFP_NET_IPSEC": "y", "CONFIG_NFP_DEBUG": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "m", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "m", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "m", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "m", "CONFIG_YELLOWFIN": "m", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "m", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "m", "CONFIG_QLCNIC": "m", "CONFIG_QLCNIC_SRIOV": "y", "CONFIG_QLCNIC_DCB": "y", "CONFIG_QLCNIC_HWMON": "y", "CONFIG_NETXEN_NIC": "m", "CONFIG_QED": "m", "CONFIG_QED_LL2": "y", "CONFIG_QED_SRIOV": "y", "CONFIG_QEDE": "m", "CONFIG_QED_RDMA": "y", "CONFIG_QED_ISCSI": "y", "CONFIG_QED_FCOE": "y", "CONFIG_QED_OOO": "y", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "m", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "m", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "m", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "not set", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "y", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_ROCKER": "m", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "m", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "m", "CONFIG_SIS190": "m", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "m", "CONFIG_SFC_MTD": "y", "CONFIG_SFC_MCDI_MON": "y", "CONFIG_SFC_SRIOV": "y", "CONFIG_SFC_MCDI_LOGGING": "y", "CONFIG_SFC_FALCON": "m", "CONFIG_SFC_FALCON_MTD": "y", "CONFIG_SFC_SIENA": "m", "CONFIG_SFC_SIENA_MTD": "y", "CONFIG_SFC_SIENA_MCDI_MON": "y", "CONFIG_SFC_SIENA_SRIOV": "y", "CONFIG_SFC_SIENA_MCDI_LOGGING": "y", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "m", "CONFIG_SMSC911X": "m", "CONFIG_SMSC911X_ARCH_HOOKS": "not set", "CONFIG_SMSC9420": "m", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "m", "CONFIG_STMMAC_SELFTESTS": "not set", "CONFIG_STMMAC_PLATFORM": "not set", "CONFIG_DWMAC_INTEL": "m", "CONFIG_STMMAC_PCI": "m", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "m", "CONFIG_SUNGEM": "m", "CONFIG_CASSINI": "m", "CONFIG_NIU": "m", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "m", "CONFIG_DWC_XLGMAC_PCI": "m", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "m", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "m", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_MSE102X": "m", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "m", "CONFIG_VIA_RHINE_MMIO": "y", "CONFIG_VIA_VELOCITY": "m", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_LIBWX": "m", "CONFIG_NGBE": "m", "CONFIG_TXGBE": "m", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "m", "CONFIG_WIZNET_W5300": "m", "CONFIG_WIZNET_BUS_DIRECT": "not set", "CONFIG_WIZNET_BUS_INDIRECT": "not set", "CONFIG_WIZNET_BUS_ANY": "y", "CONFIG_WIZNET_W5100_SPI": "m", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_AXI_EMAC": "m", "CONFIG_XILINX_LL_TEMAC": "m", "CONFIG_FDDI": "m", "CONFIG_DEFXX": "m", "CONFIG_SKFP": "m", "CONFIG_HIPPI": "y", "CONFIG_ROADRUNNER": "m", "CONFIG_ROADRUNNER_LARGE_RINGS": "not set", "CONFIG_NET_SB1000": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "y", "CONFIG_PHYLIB_LEDS": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "m", "CONFIG_AMD_PHY": "m", "CONFIG_ADIN_PHY": "m", "CONFIG_ADIN1100_PHY": "m", "CONFIG_AQUANTIA_PHY": "m", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "m", "CONFIG_BCM54140_PHY": "m", "CONFIG_BCM7XXX_PHY": "m", "CONFIG_BCM84881_PHY": "m", "CONFIG_BCM87XX_PHY": "m", "CONFIG_BCM_NET_PHYLIB": "m", "CONFIG_CICADA_PHY": "m", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "m", "CONFIG_ICPLUS_PHY": "m", "CONFIG_LXT_PHY": "m", "CONFIG_INTEL_XWAY_PHY": "m", "CONFIG_LSI_ET1011C_PHY": "m", "CONFIG_MARVELL_PHY": "m", "CONFIG_MARVELL_10G_PHY": "m", "CONFIG_MARVELL_88X2222_PHY": "m", "CONFIG_MAXLINEAR_GPHY": "m", "CONFIG_MEDIATEK_GE_PHY": "m", "CONFIG_MICREL_PHY": "m", "CONFIG_MICROCHIP_T1S_PHY": "m", "CONFIG_MICROCHIP_PHY": "m", "CONFIG_MICROCHIP_T1_PHY": "m", "CONFIG_MICROSEMI_PHY": "m", "CONFIG_MOTORCOMM_PHY": "m", "CONFIG_NATIONAL_PHY": "m", "CONFIG_NXP_CBTX_PHY": "m", "CONFIG_NXP_C45_TJA11XX_PHY": "m", "CONFIG_NXP_TJA11XX_PHY": "m", "CONFIG_NCN26000_PHY": "m", "CONFIG_AT803X_PHY": "m", "CONFIG_QSEMI_PHY": "m", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "m", "CONFIG_ROCKCHIP_PHY": "m", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "m", "CONFIG_TERANETICS_PHY": "m", "CONFIG_DP83822_PHY": "m", "CONFIG_DP83TC811_PHY": "m", "CONFIG_DP83848_PHY": "m", "CONFIG_DP83867_PHY": "m", "CONFIG_DP83869_PHY": "m", "CONFIG_DP83TD510_PHY": "m", "CONFIG_VITESSE_PHY": "m", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MICREL_KS8995MA": "not set", "CONFIG_PSE_CONTROLLER": "y", "CONFIG_PSE_REGULATOR": "m", "CONFIG_CAN_DEV": "m", "CONFIG_CAN_VCAN": "m", "CONFIG_CAN_VXCAN": "m", "CONFIG_CAN_NETLINK": "y", "CONFIG_CAN_CALC_BITTIMING": "y", "CONFIG_CAN_RX_OFFLOAD": "y", "CONFIG_CAN_CAN327": "m", "CONFIG_CAN_KVASER_PCIEFD": "m", "CONFIG_CAN_SLCAN": "m", "CONFIG_CAN_C_CAN": "m", "CONFIG_CAN_C_CAN_PLATFORM": "not set", "CONFIG_CAN_C_CAN_PCI": "m", "CONFIG_CAN_CC770": "not set", "CONFIG_CAN_CTUCANFD": "m", "CONFIG_CAN_CTUCANFD_PCI": "m", "CONFIG_CAN_IFI_CANFD": "m", "CONFIG_CAN_M_CAN": "m", "CONFIG_CAN_M_CAN_PCI": "m", "CONFIG_CAN_M_CAN_PLATFORM": "m", "CONFIG_CAN_M_CAN_TCAN4X5X": "m", "CONFIG_CAN_PEAK_PCIEFD": "m", "CONFIG_CAN_SJA1000": "m", "CONFIG_CAN_EMS_PCI": "m", "CONFIG_CAN_F81601": "m", "CONFIG_CAN_KVASER_PCI": "m", "CONFIG_CAN_PEAK_PCI": "m", "CONFIG_CAN_PEAK_PCIEC": "y", "CONFIG_CAN_PLX_PCI": "m", "CONFIG_CAN_SJA1000_ISA": "not set", "CONFIG_CAN_SJA1000_PLATFORM": "not set", "CONFIG_CAN_SOFTING": "m", "CONFIG_CAN_HI311X": "m", "CONFIG_CAN_MCP251X": "not set", "CONFIG_CAN_MCP251XFD": "m", "CONFIG_CAN_MCP251XFD_SANITY": "not set", "CONFIG_CAN_8DEV_USB": "m", "CONFIG_CAN_EMS_USB": "m", "CONFIG_CAN_ESD_USB": "m", "CONFIG_CAN_ETAS_ES58X": "m", "CONFIG_CAN_GS_USB": "m", "CONFIG_CAN_KVASER_USB": "m", "CONFIG_CAN_MCBA_USB": "m", "CONFIG_CAN_PEAK_USB": "m", "CONFIG_CAN_UCAN": "m", "CONFIG_CAN_DEBUG_DEVICES": "not set", "CONFIG_MCTP_SERIAL": "m", "CONFIG_MDIO_DEVICE": "m", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "m", "CONFIG_MDIO_BCM_UNIMAC": "m", "CONFIG_MDIO_GPIO": "m", "CONFIG_MDIO_I2C": "m", "CONFIG_MDIO_MVUSB": "m", "CONFIG_MDIO_MSCC_MIIM": "m", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "m", "CONFIG_PCS_LYNX": "m", "CONFIG_PCS_MTK_LYNXI": "m", "CONFIG_PLIP": "m", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "m", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOATM": "m", "CONFIG_PPPOE": "m", "CONFIG_PPTP": "m", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "m", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "m", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "m", "CONFIG_USB_NET_CDC_MBIM": "m", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "m", "CONFIG_USB_NET_SR9800": "m", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "m", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "m", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "y", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "m", "CONFIG_USB_NET_KALMIA": "m", "CONFIG_USB_NET_QMI_WWAN": "m", "CONFIG_USB_HSO": "m", "CONFIG_USB_NET_INT51X1": "m", "CONFIG_USB_CDC_PHONET": "m", "CONFIG_USB_IPHETH": "m", "CONFIG_USB_SIERRA_NET": "m", "CONFIG_USB_VL600": "m", "CONFIG_USB_NET_CH9200": "m", "CONFIG_USB_NET_AQC111": "m", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "m", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DEBUGFS": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "y", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "y", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "m", "CONFIG_ATH9K_HTC": "m", "CONFIG_ATH9K_HTC_DEBUGFS": "not set", "CONFIG_ATH9K_HWRNG": "y", "CONFIG_CARL9170": "m", "CONFIG_CARL9170_LEDS": "y", "CONFIG_CARL9170_DEBUGFS": "not set", "CONFIG_CARL9170_WPC": "y", "CONFIG_CARL9170_HWRNG": "y", "CONFIG_ATH6KL": "m", "CONFIG_ATH6KL_SDIO": "m", "CONFIG_ATH6KL_USB": "m", "CONFIG_ATH6KL_DEBUG": "not set", "CONFIG_ATH6KL_TRACING": "not set", "CONFIG_AR5523": "m", "CONFIG_WIL6210": "m", "CONFIG_WIL6210_ISR_COR": "y", "CONFIG_WIL6210_TRACING": "y", "CONFIG_WIL6210_DEBUGFS": "not set", "CONFIG_ATH10K": "m", "CONFIG_ATH10K_CE": "y", "CONFIG_ATH10K_PCI": "m", "CONFIG_ATH10K_SDIO": "m", "CONFIG_ATH10K_USB": "m", "CONFIG_ATH10K_DEBUG": "not set", "CONFIG_ATH10K_DEBUGFS": "not set", "CONFIG_ATH10K_TRACING": "not set", "CONFIG_WCN36XX": "m", "CONFIG_WCN36XX_DEBUGFS": "not set", "CONFIG_ATH11K": "m", "CONFIG_ATH11K_PCI": "m", "CONFIG_ATH11K_DEBUG": "not set", "CONFIG_ATH11K_DEBUGFS": "not set", "CONFIG_ATH11K_TRACING": "not set", "CONFIG_ATH12K": "m", "CONFIG_ATH12K_DEBUG": "not set", "CONFIG_ATH12K_TRACING": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_ATMEL": "m", "CONFIG_PCI_ATMEL": "m", "CONFIG_AT76C50X_USB": "m", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "m", "CONFIG_B43_BCMA": "y", "CONFIG_B43_SSB": "y", "CONFIG_B43_BUSES_BCMA_AND_SSB": "y", "CONFIG_B43_BUSES_BCMA": "not set", "CONFIG_B43_BUSES_SSB": "not set", "CONFIG_B43_PCI_AUTOSELECT": "y", "CONFIG_B43_PCICORE_AUTOSELECT": "y", "CONFIG_B43_SDIO": "y", "CONFIG_B43_BCMA_PIO": "y", "CONFIG_B43_PIO": "y", "CONFIG_B43_PHY_G": "y", "CONFIG_B43_PHY_N": "y", "CONFIG_B43_PHY_LP": "y", "CONFIG_B43_PHY_HT": "y", "CONFIG_B43_LEDS": "y", "CONFIG_B43_HWRNG": "y", "CONFIG_B43_DEBUG": "not set", "CONFIG_B43LEGACY": "m", "CONFIG_B43LEGACY_PCI_AUTOSELECT": "y", "CONFIG_B43LEGACY_PCICORE_AUTOSELECT": "y", "CONFIG_B43LEGACY_LEDS": "y", "CONFIG_B43LEGACY_HWRNG": "y", "CONFIG_B43LEGACY_DEBUG": "not set", "CONFIG_B43LEGACY_DMA": "y", "CONFIG_B43LEGACY_PIO": "y", "CONFIG_B43LEGACY_DMA_AND_PIO_MODE": "y", "CONFIG_B43LEGACY_DMA_MODE": "not set", "CONFIG_B43LEGACY_PIO_MODE": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMSMAC_LEDS": "y", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_CISCO": "y", "CONFIG_AIRO": "m", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "m", "CONFIG_IPW2100_MONITOR": "y", "CONFIG_IPW2100_DEBUG": "y", "CONFIG_IPW2200": "m", "CONFIG_IPW2200_MONITOR": "y", "CONFIG_IPW2200_RADIOTAP": "y", "CONFIG_IPW2200_PROMISCUOUS": "y", "CONFIG_IPW2200_QOS": "y", "CONFIG_IPW2200_DEBUG": "y", "CONFIG_LIBIPW": "m", "CONFIG_LIBIPW_DEBUG": "y", "CONFIG_IWLEGACY": "m", "CONFIG_IWL4965": "m", "CONFIG_IWL3945": "m", "CONFIG_IWLEGACY_DEBUG": "not set", "CONFIG_IWLEGACY_DEBUGFS": "not set", "CONFIG_IWLWIFI": "m", "CONFIG_IWLWIFI_LEDS": "y", "CONFIG_IWLDVM": "m", "CONFIG_IWLMVM": "m", "CONFIG_IWLWIFI_OPMODE_MODULAR": "y", "CONFIG_IWLWIFI_DEBUG": "y", "CONFIG_IWLWIFI_DEBUGFS": "y", "CONFIG_IWLWIFI_DEVICE_TRACING": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_HOSTAP": "m", "CONFIG_HOSTAP_FIRMWARE": "y", "CONFIG_HOSTAP_FIRMWARE_NVRAM": "y", "CONFIG_HOSTAP_PLX": "m", "CONFIG_HOSTAP_PCI": "m", "CONFIG_HERMES": "m", "CONFIG_HERMES_PRISM": "y", "CONFIG_HERMES_CACHE_FW_ON_INIT": "y", "CONFIG_PLX_HERMES": "m", "CONFIG_TMD_HERMES": "m", "CONFIG_NORTEL_HERMES": "m", "CONFIG_PCI_HERMES": "m", "CONFIG_ORINOCO_USB": "m", "CONFIG_P54_COMMON": "m", "CONFIG_P54_USB": "m", "CONFIG_P54_PCI": "m", "CONFIG_P54_SPI": "not set", "CONFIG_P54_LEDS": "y", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "m", "CONFIG_LIBERTAS_USB": "m", "CONFIG_LIBERTAS_SDIO": "m", "CONFIG_LIBERTAS_SPI": "not set", "CONFIG_LIBERTAS_DEBUG": "not set", "CONFIG_LIBERTAS_MESH": "y", "CONFIG_LIBERTAS_THINFIRM": "m", "CONFIG_LIBERTAS_THINFIRM_DEBUG": "not set", "CONFIG_LIBERTAS_THINFIRM_USB": "m", "CONFIG_MWIFIEX": "m", "CONFIG_MWIFIEX_SDIO": "m", "CONFIG_MWIFIEX_PCIE": "m", "CONFIG_MWIFIEX_USB": "m", "CONFIG_MWL8K": "m", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76_CORE": "m", "CONFIG_MT76_LEDS": "y", "CONFIG_MT76_USB": "m", "CONFIG_MT76_SDIO": "m", "CONFIG_MT76x02_LIB": "m", "CONFIG_MT76x02_USB": "m", "CONFIG_MT76_CONNAC_LIB": "m", "CONFIG_MT792x_LIB": "m", "CONFIG_MT792x_USB": "m", "CONFIG_MT76x0_COMMON": "m", "CONFIG_MT76x0U": "m", "CONFIG_MT76x0E": "m", "CONFIG_MT76x2_COMMON": "m", "CONFIG_MT76x2E": "m", "CONFIG_MT76x2U": "m", "CONFIG_MT7603E": "m", "CONFIG_MT7615_COMMON": "m", "CONFIG_MT7615E": "m", "CONFIG_MT7663_USB_SDIO_COMMON": "m", "CONFIG_MT7663U": "m", "CONFIG_MT7663S": "m", "CONFIG_MT7915E": "m", "CONFIG_MT7921_COMMON": "m", "CONFIG_MT7921E": "m", "CONFIG_MT7921S": "m", "CONFIG_MT7921U": "m", "CONFIG_MT7996E": "m", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WILC1000_SPI": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "m", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "m", "CONFIG_RT2500PCI": "m", "CONFIG_RT61PCI": "m", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "m", "CONFIG_RT73USB": "m", "CONFIG_RT2800USB": "m", "CONFIG_RT2800USB_RT33XX": "y", "CONFIG_RT2800USB_RT35XX": "y", "CONFIG_RT2800USB_RT3573": "y", "CONFIG_RT2800USB_RT53XX": "y", "CONFIG_RT2800USB_RT55XX": "y", "CONFIG_RT2800USB_UNKNOWN": "y", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB_USB": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_LIB_DEBUGFS": "not set", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "m", "CONFIG_RTL8187": "m", "CONFIG_RTL8187_LEDS": "y", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "m", "CONFIG_RTL8192SE": "m", "CONFIG_RTL8192DE": "m", "CONFIG_RTL8723AE": "m", "CONFIG_RTL8723BE": "m", "CONFIG_RTL8188EE": "m", "CONFIG_RTL8192EE": "m", "CONFIG_RTL8821AE": "m", "CONFIG_RTL8192CU": "m", "CONFIG_RTLWIFI": "m", "CONFIG_RTLWIFI_PCI": "m", "CONFIG_RTLWIFI_USB": "m", "CONFIG_RTLWIFI_DEBUG": "y", "CONFIG_RTL8192C_COMMON": "m", "CONFIG_RTL8723_COMMON": "m", "CONFIG_RTLBTCOEXIST": "m", "CONFIG_RTL8XXXU": "m", "CONFIG_RTL8XXXU_UNTESTED": "y", "CONFIG_RTW88": "m", "CONFIG_RTW88_CORE": "m", "CONFIG_RTW88_PCI": "m", "CONFIG_RTW88_SDIO": "m", "CONFIG_RTW88_USB": "m", "CONFIG_RTW88_8822B": "m", "CONFIG_RTW88_8822C": "m", "CONFIG_RTW88_8723D": "m", "CONFIG_RTW88_8821C": "m", "CONFIG_RTW88_8822BE": "m", "CONFIG_RTW88_8822BS": "m", "CONFIG_RTW88_8822BU": "m", "CONFIG_RTW88_8822CE": "m", "CONFIG_RTW88_8822CS": "m", "CONFIG_RTW88_8822CU": "m", "CONFIG_RTW88_8723DE": "m", "CONFIG_RTW88_8723DS": "not set", "CONFIG_RTW88_8723DU": "m", "CONFIG_RTW88_8821CE": "m", "CONFIG_RTW88_8821CS": "m", "CONFIG_RTW88_8821CU": "m", "CONFIG_RTW88_DEBUG": "not set", "CONFIG_RTW88_DEBUGFS": "not set", "CONFIG_RTW89": "m", "CONFIG_RTW89_CORE": "m", "CONFIG_RTW89_PCI": "m", "CONFIG_RTW89_8852A": "m", "CONFIG_RTW89_8852B": "m", "CONFIG_RTW89_8852C": "m", "CONFIG_RTW89_8851BE": "not set", "CONFIG_RTW89_8852AE": "m", "CONFIG_RTW89_8852BE": "m", "CONFIG_RTW89_8852CE": "m", "CONFIG_RTW89_DEBUGMSG": "not set", "CONFIG_RTW89_DEBUGFS": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "m", "CONFIG_RSI_DEBUGFS": "not set", "CONFIG_RSI_SDIO": "m", "CONFIG_RSI_USB": "m", "CONFIG_RSI_COEX": "y", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "m", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "m", "CONFIG_CW1200_WLAN_SDIO": "m", "CONFIG_CW1200_WLAN_SPI": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "m", "CONFIG_WL1251_SPI": "not set", "CONFIG_WL1251_SDIO": "m", "CONFIG_WL12XX": "m", "CONFIG_WL18XX": "m", "CONFIG_WLCORE": "m", "CONFIG_WLCORE_SDIO": "m", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_USB_ZD1201": "m", "CONFIG_ZD1211RW": "m", "CONFIG_ZD1211RW_DEBUG": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC": "m", "CONFIG_QTNFMAC_PCIE": "m", "CONFIG_USB_NET_RNDIS_WLAN": "m", "CONFIG_MAC80211_HWSIM": "m", "CONFIG_VIRT_WIFI": "m", "CONFIG_WAN": "y", "CONFIG_HDLC": "m", "CONFIG_HDLC_RAW": "m", "CONFIG_HDLC_RAW_ETH": "m", "CONFIG_HDLC_CISCO": "m", "CONFIG_HDLC_FR": "m", "CONFIG_HDLC_PPP": "m", "CONFIG_HDLC_X25": "m", "CONFIG_PCI200SYN": "m", "CONFIG_WANXL": "m", "CONFIG_PC300TOO": "m", "CONFIG_FARSYNC": "m", "CONFIG_LAPBETHER": "m", "CONFIG_IEEE802154_DRIVERS": "m", "CONFIG_IEEE802154_FAKELB": "m", "CONFIG_IEEE802154_AT86RF230": "not set", "CONFIG_IEEE802154_MRF24J40": "not set", "CONFIG_IEEE802154_CC2520": "not set", "CONFIG_IEEE802154_ATUSB": "not set", "CONFIG_IEEE802154_ADF7242": "m", "CONFIG_IEEE802154_CA8210": "m", "CONFIG_IEEE802154_CA8210_DEBUGFS": "not set", "CONFIG_IEEE802154_MCR20A": "m", "CONFIG_IEEE802154_HWSIM": "m", "CONFIG_WWAN": "y", "CONFIG_WWAN_DEBUGFS": "not set", "CONFIG_WWAN_HWSIM": "m", "CONFIG_MHI_WWAN_CTRL": "m", "CONFIG_MHI_WWAN_MBIM": "m", "CONFIG_RPMSG_WWAN_CTRL": "m", "CONFIG_IOSM": "m", "CONFIG_MTK_T7XX": "m", "CONFIG_XEN_NETDEV_FRONTEND": "m", "CONFIG_XEN_NETDEV_BACKEND": "m", "CONFIG_VMXNET3": "m", "CONFIG_FUJITSU_ES": "m", "CONFIG_USB4_NET": "m", "CONFIG_HYPERV_NET": "m", "CONFIG_NETDEVSIM": "m", "CONFIG_NET_FAILOVER": "m", "CONFIG_ISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "m", "CONFIG_INPUT_SPARSEKMAP": "m", "CONFIG_INPUT_MATRIXKMAP": "m", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "y", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "m", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADC": "not set", "CONFIG_KEYBOARD_ADP5588": "m", "CONFIG_KEYBOARD_ADP5589": "m", "CONFIG_KEYBOARD_APPLESPI": "m", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "m", "CONFIG_KEYBOARD_QT1070": "m", "CONFIG_KEYBOARD_QT2160": "m", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "m", "CONFIG_KEYBOARD_GPIO_POLLED": "m", "CONFIG_KEYBOARD_TCA6416": "m", "CONFIG_KEYBOARD_TCA8418": "m", "CONFIG_KEYBOARD_MATRIX": "m", "CONFIG_KEYBOARD_LM8323": "m", "CONFIG_KEYBOARD_LM8333": "m", "CONFIG_KEYBOARD_MAX7359": "m", "CONFIG_KEYBOARD_MCS": "m", "CONFIG_KEYBOARD_MPR121": "m", "CONFIG_KEYBOARD_NEWTON": "m", "CONFIG_KEYBOARD_OPENCORES": "m", "CONFIG_KEYBOARD_PINEPHONE": "m", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "m", "CONFIG_KEYBOARD_IQS62X": "m", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "m", "CONFIG_KEYBOARD_CROS_EC": "m", "CONFIG_KEYBOARD_CYPRESS_SF": "m", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "y", "CONFIG_MOUSE_PS2_ELANTECH_SMBUS": "y", "CONFIG_MOUSE_PS2_SENTELIC": "y", "CONFIG_MOUSE_PS2_TOUCHKIT": "y", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "y", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "m", "CONFIG_MOUSE_APPLETOUCH": "m", "CONFIG_MOUSE_BCM5974": "m", "CONFIG_MOUSE_CYAPA": "m", "CONFIG_MOUSE_ELAN_I2C": "m", "CONFIG_MOUSE_ELAN_I2C_I2C": "y", "CONFIG_MOUSE_ELAN_I2C_SMBUS": "y", "CONFIG_MOUSE_VSXXXAA": "m", "CONFIG_MOUSE_GPIO": "m", "CONFIG_MOUSE_SYNAPTICS_I2C": "m", "CONFIG_MOUSE_SYNAPTICS_USB": "m", "CONFIG_INPUT_JOYSTICK": "y", "CONFIG_JOYSTICK_ANALOG": "not set", "CONFIG_JOYSTICK_A3D": "not set", "CONFIG_JOYSTICK_ADC": "m", "CONFIG_JOYSTICK_ADI": "not set", "CONFIG_JOYSTICK_COBRA": "not set", "CONFIG_JOYSTICK_GF2K": "not set", "CONFIG_JOYSTICK_GRIP": "not set", "CONFIG_JOYSTICK_GRIP_MP": "not set", "CONFIG_JOYSTICK_GUILLEMOT": "not set", "CONFIG_JOYSTICK_INTERACT": "not set", "CONFIG_JOYSTICK_SIDEWINDER": "not set", "CONFIG_JOYSTICK_TMDC": "not set", "CONFIG_JOYSTICK_IFORCE": "m", "CONFIG_JOYSTICK_IFORCE_USB": "m", "CONFIG_JOYSTICK_IFORCE_232": "m", "CONFIG_JOYSTICK_WARRIOR": "m", "CONFIG_JOYSTICK_MAGELLAN": "m", "CONFIG_JOYSTICK_SPACEORB": "m", "CONFIG_JOYSTICK_SPACEBALL": "m", "CONFIG_JOYSTICK_STINGER": "m", "CONFIG_JOYSTICK_TWIDJOY": "m", "CONFIG_JOYSTICK_ZHENHUA": "m", "CONFIG_JOYSTICK_DB9": "m", "CONFIG_JOYSTICK_GAMECON": "m", "CONFIG_JOYSTICK_TURBOGRAFX": "m", "CONFIG_JOYSTICK_AS5011": "m", "CONFIG_JOYSTICK_JOYDUMP": "not set", "CONFIG_JOYSTICK_XPAD": "m", "CONFIG_JOYSTICK_XPAD_FF": "y", "CONFIG_JOYSTICK_XPAD_LEDS": "y", "CONFIG_JOYSTICK_WALKERA0701": "m", "CONFIG_JOYSTICK_PSXPAD_SPI": "m", "CONFIG_JOYSTICK_PSXPAD_SPI_FF": "y", "CONFIG_JOYSTICK_PXRC": "m", "CONFIG_JOYSTICK_QWIIC": "m", "CONFIG_JOYSTICK_FSIA6B": "m", "CONFIG_JOYSTICK_SENSEHAT": "m", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "m", "CONFIG_TABLET_USB_AIPTEK": "m", "CONFIG_TABLET_USB_HANWANG": "m", "CONFIG_TABLET_USB_KBTAB": "m", "CONFIG_TABLET_USB_PEGASUS": "m", "CONFIG_TABLET_SERIAL_WACOM4": "m", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_ADS7846": "not set", "CONFIG_TOUCHSCREEN_AD7877": "not set", "CONFIG_TOUCHSCREEN_AD7879": "m", "CONFIG_TOUCHSCREEN_AD7879_I2C": "m", "CONFIG_TOUCHSCREEN_AD7879_SPI": "not set", "CONFIG_TOUCHSCREEN_ADC": "m", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "m", "CONFIG_TOUCHSCREEN_ATMEL_MXT_T37": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "m", "CONFIG_TOUCHSCREEN_BU21013": "m", "CONFIG_TOUCHSCREEN_BU21029": "m", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "m", "CONFIG_TOUCHSCREEN_CY8CTMA140": "m", "CONFIG_TOUCHSCREEN_CY8CTMG110": "m", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "m", "CONFIG_TOUCHSCREEN_CYTTSP_I2C": "m", "CONFIG_TOUCHSCREEN_CYTTSP_SPI": "not set", "CONFIG_TOUCHSCREEN_CYTTSP4_CORE": "m", "CONFIG_TOUCHSCREEN_CYTTSP4_I2C": "m", "CONFIG_TOUCHSCREEN_CYTTSP4_SPI": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "m", "CONFIG_TOUCHSCREEN_DYNAPRO": "m", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "m", "CONFIG_TOUCHSCREEN_EETI": "m", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "m", "CONFIG_TOUCHSCREEN_EXC3000": "m", "CONFIG_TOUCHSCREEN_FUJITSU": "m", "CONFIG_TOUCHSCREEN_GOODIX": "m", "CONFIG_TOUCHSCREEN_HIDEEP": "m", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "m", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "m", "CONFIG_TOUCHSCREEN_ILI210X": "m", "CONFIG_TOUCHSCREEN_ILITEK": "m", "CONFIG_TOUCHSCREEN_S6SY761": "m", "CONFIG_TOUCHSCREEN_GUNZE": "m", "CONFIG_TOUCHSCREEN_EKTF2127": "m", "CONFIG_TOUCHSCREEN_ELAN": "m", "CONFIG_TOUCHSCREEN_ELO": "m", "CONFIG_TOUCHSCREEN_WACOM_W8001": "m", "CONFIG_TOUCHSCREEN_WACOM_I2C": "m", "CONFIG_TOUCHSCREEN_MAX11801": "m", "CONFIG_TOUCHSCREEN_MCS5000": "m", "CONFIG_TOUCHSCREEN_MMS114": "m", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "m", "CONFIG_TOUCHSCREEN_MSG2638": "m", "CONFIG_TOUCHSCREEN_MTOUCH": "m", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "m", "CONFIG_TOUCHSCREEN_IMAGIS": "m", "CONFIG_TOUCHSCREEN_INEXIO": "m", "CONFIG_TOUCHSCREEN_MK712": "m", "CONFIG_TOUCHSCREEN_PENMOUNT": "m", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "m", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "m", "CONFIG_TOUCHSCREEN_TOUCHWIN": "m", "CONFIG_TOUCHSCREEN_PIXCIR": "m", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "m", "CONFIG_TOUCHSCREEN_WM97XX": "m", "CONFIG_TOUCHSCREEN_WM9705": "y", "CONFIG_TOUCHSCREEN_WM9712": "y", "CONFIG_TOUCHSCREEN_WM9713": "y", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "m", "CONFIG_TOUCHSCREEN_TSC_SERIO": "m", "CONFIG_TOUCHSCREEN_TSC200X_CORE": "m", "CONFIG_TOUCHSCREEN_TSC2004": "m", "CONFIG_TOUCHSCREEN_TSC2005": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "m", "CONFIG_TOUCHSCREEN_TSC2007_IIO": "y", "CONFIG_TOUCHSCREEN_RM_TS": "m", "CONFIG_TOUCHSCREEN_SILEAD": "m", "CONFIG_TOUCHSCREEN_SIS_I2C": "m", "CONFIG_TOUCHSCREEN_ST1232": "m", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "m", "CONFIG_TOUCHSCREEN_SURFACE3_SPI": "m", "CONFIG_TOUCHSCREEN_SX8654": "m", "CONFIG_TOUCHSCREEN_TPS6507X": "m", "CONFIG_TOUCHSCREEN_ZET6223": "m", "CONFIG_TOUCHSCREEN_ZFORCE": "m", "CONFIG_TOUCHSCREEN_COLIBRI_VF50": "m", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "m", "CONFIG_TOUCHSCREEN_IQS5XX": "m", "CONFIG_TOUCHSCREEN_ZINITIX": "m", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "m", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "m", "CONFIG_INPUT_AD714X_I2C": "m", "CONFIG_INPUT_AD714X_SPI": "not set", "CONFIG_INPUT_BMA150": "m", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "m", "CONFIG_INPUT_MMA8450": "m", "CONFIG_INPUT_APANEL": "m", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "m", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "m", "CONFIG_INPUT_ATI_REMOTE2": "m", "CONFIG_INPUT_KEYSPAN_REMOTE": "m", "CONFIG_INPUT_KXTJ9": "m", "CONFIG_INPUT_POWERMATE": "m", "CONFIG_INPUT_YEALINK": "m", "CONFIG_INPUT_CM109": "m", "CONFIG_INPUT_REGULATOR_HAPTIC": "m", "CONFIG_INPUT_AXP20X_PEK": "m", "CONFIG_INPUT_UINPUT": "m", "CONFIG_INPUT_PCF8574": "m", "CONFIG_INPUT_PWM_BEEPER": "m", "CONFIG_INPUT_PWM_VIBRA": "m", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "m", "CONFIG_INPUT_DA7280_HAPTICS": "m", "CONFIG_INPUT_DA9063_ONKEY": "m", "CONFIG_INPUT_ADXL34X": "m", "CONFIG_INPUT_ADXL34X_I2C": "m", "CONFIG_INPUT_ADXL34X_SPI": "not set", "CONFIG_INPUT_IMS_PCU": "m", "CONFIG_INPUT_IQS269A": "m", "CONFIG_INPUT_IQS626A": "m", "CONFIG_INPUT_IQS7222": "m", "CONFIG_INPUT_CMA3000": "m", "CONFIG_INPUT_CMA3000_I2C": "m", "CONFIG_INPUT_XEN_KBDDEV_FRONTEND": "m", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "m", "CONFIG_INPUT_SOC_BUTTON_ARRAY": "m", "CONFIG_INPUT_DRV260X_HAPTICS": "m", "CONFIG_INPUT_DRV2665_HAPTICS": "m", "CONFIG_INPUT_DRV2667_HAPTICS": "m", "CONFIG_RMI4_CORE": "m", "CONFIG_RMI4_I2C": "m", "CONFIG_RMI4_SPI": "m", "CONFIG_RMI4_SMB": "m", "CONFIG_RMI4_F03": "y", "CONFIG_RMI4_F03_SERIO": "m", "CONFIG_RMI4_2D_SENSOR": "y", "CONFIG_RMI4_F11": "y", "CONFIG_RMI4_F12": "y", "CONFIG_RMI4_F30": "y", "CONFIG_RMI4_F34": "y", "CONFIG_RMI4_F3A": "y", "CONFIG_RMI4_F54": "y", "CONFIG_RMI4_F55": "y", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "m", "CONFIG_SERIO_CT82C710": "m", "CONFIG_SERIO_PARKBD": "m", "CONFIG_SERIO_PCIPS2": "m", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "m", "CONFIG_SERIO_ALTERA_PS2": "m", "CONFIG_SERIO_PS2MULT": "m", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_HYPERV_KEYBOARD": "m", "CONFIG_SERIO_GPIO_PS2": "m", "CONFIG_USERIO": "m", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_HW_CONSOLE": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "y", "CONFIG_LEGACY_PTY_COUNT": "0", "CONFIG_LEGACY_TIOCSTI": "not set", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "not set", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "y", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_DMA": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "32", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "32", "CONFIG_SERIAL_8250_EXTENDED": "y", "CONFIG_SERIAL_8250_MANY_PORTS": "y", "CONFIG_SERIAL_8250_PCI1XXXX": "y", "CONFIG_SERIAL_8250_SHARE_IRQ": "y", "CONFIG_SERIAL_8250_DETECT_IRQ": "not set", "CONFIG_SERIAL_8250_RSA": "y", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_FSL": "not set", "CONFIG_SERIAL_8250_DFL": "m", "CONFIG_SERIAL_8250_DW": "y", "CONFIG_SERIAL_8250_RT288X": "y", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_MAX3100": "not set", "CONFIG_SERIAL_MAX310X": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "m", "CONFIG_SERIAL_LANTIQ": "m", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX_CORE": "m", "CONFIG_SERIAL_SC16IS7XX": "m", "CONFIG_SERIAL_SC16IS7XX_I2C": "y", "CONFIG_SERIAL_SC16IS7XX_SPI": "y", "CONFIG_SERIAL_ALTERA_JTAGUART": "m", "CONFIG_SERIAL_ALTERA_UART": "m", "CONFIG_SERIAL_ALTERA_UART_MAXPORTS": "4", "CONFIG_SERIAL_ALTERA_UART_BAUDRATE": "115200", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "m", "CONFIG_SERIAL_RP2_NR_UARTS": "32", "CONFIG_SERIAL_FSL_LPUART": "m", "CONFIG_SERIAL_FSL_LINFLEXUART": "m", "CONFIG_SERIAL_SPRD": "m", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "y", "CONFIG_MOXA_INTELLIO": "m", "CONFIG_MOXA_SMARTIO": "m", "CONFIG_SYNCLINK_GT": "m", "CONFIG_N_HDLC": "m", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "m", "CONFIG_NULL_TTY": "m", "CONFIG_HVC_DRIVER": "y", "CONFIG_HVC_IRQ": "y", "CONFIG_HVC_XEN": "y", "CONFIG_HVC_XEN_FRONTEND": "y", "CONFIG_RPMSG_TTY": "m", "CONFIG_SERIAL_DEV_BUS": "y", "CONFIG_SERIAL_DEV_CTRL_TTYPORT": "y", "CONFIG_TTY_PRINTK": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "m", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "m", "CONFIG_IPMI_DMI_DECODE": "y", "CONFIG_IPMI_PLAT_DATA": "y", "CONFIG_IPMI_PANIC_EVENT": "y", "CONFIG_IPMI_PANIC_STRING": "not set", "CONFIG_IPMI_DEVICE_INTERFACE": "m", "CONFIG_IPMI_SI": "m", "CONFIG_IPMI_SSIF": "m", "CONFIG_IPMI_WATCHDOG": "m", "CONFIG_IPMI_POWEROFF": "m", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "m", "CONFIG_HW_RANDOM_AMD": "m", "CONFIG_HW_RANDOM_BA431": "m", "CONFIG_HW_RANDOM_VIA": "m", "CONFIG_HW_RANDOM_VIRTIO": "m", "CONFIG_HW_RANDOM_XIPHERA": "m", "CONFIG_APPLICOM": "m", "CONFIG_MWAVE": "m", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "y", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "m", "CONFIG_UV_MMTIMER": "m", "CONFIG_TCG_TPM": "y", "CONFIG_HW_RANDOM_TPM": "y", "CONFIG_TCG_TIS_CORE": "y", "CONFIG_TCG_TIS": "y", "CONFIG_TCG_TIS_SPI": "m", "CONFIG_TCG_TIS_SPI_CR50": "y", "CONFIG_TCG_TIS_I2C": "m", "CONFIG_TCG_TIS_I2C_CR50": "m", "CONFIG_TCG_TIS_I2C_ATMEL": "m", "CONFIG_TCG_TIS_I2C_INFINEON": "m", "CONFIG_TCG_TIS_I2C_NUVOTON": "m", "CONFIG_TCG_NSC": "m", "CONFIG_TCG_ATMEL": "m", "CONFIG_TCG_INFINEON": "m", "CONFIG_TCG_XEN": "m", "CONFIG_TCG_CRB": "y", "CONFIG_TCG_VTPM_PROXY": "m", "CONFIG_TCG_TIS_ST33ZP24": "m", "CONFIG_TCG_TIS_ST33ZP24_I2C": "m", "CONFIG_TCG_TIS_ST33ZP24_SPI": "m", "CONFIG_TELCLOCK": "m", "CONFIG_CRASHER": "m", "CONFIG_XILLYBUS_CLASS": "m", "CONFIG_XILLYBUS": "m", "CONFIG_XILLYBUS_PCIE": "m", "CONFIG_XILLYUSB": "m", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_COMPAT": "not set", "CONFIG_I2C_CHARDEV": "m", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "m", "CONFIG_I2C_MUX_LTC4306": "m", "CONFIG_I2C_MUX_PCA9541": "m", "CONFIG_I2C_MUX_PCA954x": "m", "CONFIG_I2C_MUX_REG": "m", "CONFIG_I2C_MUX_MLXCPLD": "m", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "m", "CONFIG_I2C_ALGOBIT": "m", "CONFIG_I2C_ALGOPCA": "m", "CONFIG_I2C_CCGX_UCSI": "m", "CONFIG_I2C_ALI1535": "m", "CONFIG_I2C_ALI1563": "m", "CONFIG_I2C_ALI15X3": "m", "CONFIG_I2C_AMD756": "m", "CONFIG_I2C_AMD756_S4882": "m", "CONFIG_I2C_AMD8111": "m", "CONFIG_I2C_AMD_MP2": "m", "CONFIG_I2C_I801": "m", "CONFIG_I2C_ISCH": "m", "CONFIG_I2C_ISMT": "m", "CONFIG_I2C_PIIX4": "m", "CONFIG_I2C_NFORCE2": "m", "CONFIG_I2C_NFORCE2_S4985": "m", "CONFIG_I2C_NVIDIA_GPU": "m", "CONFIG_I2C_SIS5595": "m", "CONFIG_I2C_SIS630": "m", "CONFIG_I2C_SIS96X": "m", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "m", "CONFIG_I2C_SCMI": "m", "CONFIG_I2C_CBUS_GPIO": "m", "CONFIG_I2C_DESIGNWARE_CORE": "m", "CONFIG_I2C_DESIGNWARE_SLAVE": "not set", "CONFIG_I2C_DESIGNWARE_PLATFORM": "m", "CONFIG_I2C_DESIGNWARE_AMDPSP": "y", "CONFIG_I2C_DESIGNWARE_BAYTRAIL": "y", "CONFIG_I2C_DESIGNWARE_PCI": "m", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "m", "CONFIG_I2C_GPIO_FAULT_INJECTOR": "not set", "CONFIG_I2C_KEMPLD": "m", "CONFIG_I2C_OCORES": "m", "CONFIG_I2C_PCA_PLATFORM": "m", "CONFIG_I2C_PXA_PCI": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "m", "CONFIG_I2C_DLN2": "m", "CONFIG_I2C_CP2615": "m", "CONFIG_I2C_PARPORT": "m", "CONFIG_I2C_PCI1XXXX": "m", "CONFIG_I2C_ROBOTFUZZ_OSIF": "m", "CONFIG_I2C_TAOS_EVM": "m", "CONFIG_I2C_TINY_USB": "m", "CONFIG_I2C_VIPERBOARD": "m", "CONFIG_I2C_MLXCPLD": "m", "CONFIG_I2C_CROS_EC_TUNNEL": "m", "CONFIG_I2C_VIRTIO": "m", "CONFIG_I2C_STUB": "m", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "m", "CONFIG_CDNS_I3C_MASTER": "m", "CONFIG_DW_I3C_MASTER": "m", "CONFIG_SVC_I3C_MASTER": "m", "CONFIG_MIPI_I3C_HCI": "m", "CONFIG_SPI": "y", "CONFIG_SPI_DEBUG": "not set", "CONFIG_SPI_MASTER": "y", "CONFIG_SPI_MEM": "y", "CONFIG_SPI_ALTERA": "not set", "CONFIG_SPI_ALTERA_CORE": "m", "CONFIG_SPI_ALTERA_DFL": "m", "CONFIG_SPI_AXI_SPI_ENGINE": "not set", "CONFIG_SPI_BITBANG": "y", "CONFIG_SPI_BUTTERFLY": "not set", "CONFIG_SPI_CADENCE": "not set", "CONFIG_SPI_DESIGNWARE": "not set", "CONFIG_SPI_DLN2": "m", "CONFIG_SPI_GPIO": "not set", "CONFIG_SPI_INTEL": "m", "CONFIG_SPI_INTEL_PCI": "m", "CONFIG_SPI_INTEL_PLATFORM": "m", "CONFIG_SPI_LM70_LLP": "not set", "CONFIG_SPI_MICROCHIP_CORE": "m", "CONFIG_SPI_MICROCHIP_CORE_QSPI": "m", "CONFIG_SPI_LANTIQ_SSC": "not set", "CONFIG_SPI_OC_TINY": "not set", "CONFIG_SPI_PCI1XXXX": "not set", "CONFIG_SPI_PXA2XX": "m", "CONFIG_SPI_PXA2XX_PCI": "m", "CONFIG_SPI_SC18IS602": "not set", "CONFIG_SPI_SIFIVE": "not set", "CONFIG_SPI_MXIC": "not set", "CONFIG_SPI_XCOMM": "not set", "CONFIG_SPI_XILINX": "not set", "CONFIG_SPI_ZYNQMP_GQSPI": "not set", "CONFIG_SPI_AMD": "m", "CONFIG_SPI_MUX": "m", "CONFIG_SPI_SPIDEV": "not set", "CONFIG_SPI_LOOPBACK_TEST": "m", "CONFIG_SPI_TLE62X0": "not set", "CONFIG_SPI_SLAVE": "not set", "CONFIG_SPI_DYNAMIC": "y", "CONFIG_SPMI": "m", "CONFIG_SPMI_HISI3670": "not set", "CONFIG_HSI": "m", "CONFIG_HSI_BOARDINFO": "y", "CONFIG_HSI_CHAR": "m", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "m", "CONFIG_PPS_CLIENT_PARPORT": "m", "CONFIG_PPS_CLIENT_GPIO": "m", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "m", "CONFIG_PTP_1588_CLOCK_IDT82P33": "m", "CONFIG_PTP_1588_CLOCK_IDTCM": "m", "CONFIG_PTP_1588_CLOCK_VMW": "m", "CONFIG_PTP_1588_CLOCK_OCP": "m", "CONFIG_PTP_DFL_TOD": "m", "CONFIG_PINCTRL": "y", "CONFIG_PINMUX": "y", "CONFIG_PINCONF": "y", "CONFIG_GENERIC_PINCONF": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "y", "CONFIG_PINCTRL_CY8C95X0": "m", "CONFIG_PINCTRL_DA9062": "m", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_MADERA": "m", "CONFIG_PINCTRL_CS47L15": "y", "CONFIG_PINCTRL_CS47L35": "y", "CONFIG_PINCTRL_CS47L85": "y", "CONFIG_PINCTRL_CS47L90": "y", "CONFIG_PINCTRL_CS47L92": "y", "CONFIG_PINCTRL_BAYTRAIL": "y", "CONFIG_PINCTRL_CHERRYVIEW": "m", "CONFIG_PINCTRL_LYNXPOINT": "m", "CONFIG_PINCTRL_INTEL": "y", "CONFIG_PINCTRL_ALDERLAKE": "m", "CONFIG_PINCTRL_BROXTON": "m", "CONFIG_PINCTRL_CANNONLAKE": "m", "CONFIG_PINCTRL_CEDARFORK": "m", "CONFIG_PINCTRL_DENVERTON": "m", "CONFIG_PINCTRL_ELKHARTLAKE": "m", "CONFIG_PINCTRL_EMMITSBURG": "m", "CONFIG_PINCTRL_GEMINILAKE": "m", "CONFIG_PINCTRL_ICELAKE": "m", "CONFIG_PINCTRL_JASPERLAKE": "m", "CONFIG_PINCTRL_LAKEFIELD": "m", "CONFIG_PINCTRL_LEWISBURG": "m", "CONFIG_PINCTRL_METEORLAKE": "m", "CONFIG_PINCTRL_SUNRISEPOINT": "m", "CONFIG_PINCTRL_TIGERLAKE": "m", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_GPIOLIB_IRQCHIP": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_SYSFS": "y", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_GENERIC": "m", "CONFIG_GPIO_REGMAP": "m", "CONFIG_GPIO_MAX730X": "m", "CONFIG_GPIO_IDIO_16": "m", "CONFIG_GPIO_AMDPT": "m", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "m", "CONFIG_GPIO_GENERIC_PLATFORM": "m", "CONFIG_GPIO_ICH": "m", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_TANGIER": "m", "CONFIG_GPIO_VX855": "m", "CONFIG_GPIO_AMD_FCH": "m", "CONFIG_GPIO_I8255": "m", "CONFIG_GPIO_104_DIO_48E": "m", "CONFIG_GPIO_104_IDIO_16": "m", "CONFIG_GPIO_104_IDI_48": "m", "CONFIG_GPIO_F7188X": "m", "CONFIG_GPIO_GPIO_MM": "m", "CONFIG_GPIO_IT87": "m", "CONFIG_GPIO_SCH": "m", "CONFIG_GPIO_SCH311X": "m", "CONFIG_GPIO_WINBOND": "m", "CONFIG_GPIO_WS16C48": "m", "CONFIG_GPIO_FXL6408": "m", "CONFIG_GPIO_MAX7300": "m", "CONFIG_GPIO_MAX732X": "m", "CONFIG_GPIO_PCA953X": "m", "CONFIG_GPIO_PCA953X_IRQ": "y", "CONFIG_GPIO_PCA9570": "m", "CONFIG_GPIO_PCF857X": "m", "CONFIG_GPIO_TPIC2810": "m", "CONFIG_GPIO_DLN2": "m", "CONFIG_GPIO_ELKHARTLAKE": "m", "CONFIG_GPIO_KEMPLD": "m", "CONFIG_GPIO_LP3943": "m", "CONFIG_GPIO_MADERA": "m", "CONFIG_GPIO_TPS68470": "not set", "CONFIG_GPIO_TQMX86": "m", "CONFIG_GPIO_WHISKEY_COVE": "m", "CONFIG_GPIO_AMD8111": "m", "CONFIG_GPIO_ML_IOH": "m", "CONFIG_GPIO_PCI_IDIO_16": "m", "CONFIG_GPIO_PCIE_IDIO_24": "m", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_MAX3191X": "m", "CONFIG_GPIO_MAX7301": "not set", "CONFIG_GPIO_MC33880": "not set", "CONFIG_GPIO_PISOSR": "m", "CONFIG_GPIO_XRA1403": "not set", "CONFIG_GPIO_VIPERBOARD": "m", "CONFIG_GPIO_AGGREGATOR": "m", "CONFIG_GPIO_LATCH": "m", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "m", "CONFIG_GPIO_SIM": "m", "CONFIG_W1": "m", "CONFIG_W1_CON": "y", "CONFIG_W1_MASTER_MATROX": "m", "CONFIG_W1_MASTER_DS2490": "m", "CONFIG_W1_MASTER_DS2482": "m", "CONFIG_W1_MASTER_GPIO": "not set", "CONFIG_W1_MASTER_SGI": "m", "CONFIG_W1_SLAVE_THERM": "m", "CONFIG_W1_SLAVE_SMEM": "m", "CONFIG_W1_SLAVE_DS2405": "m", "CONFIG_W1_SLAVE_DS2408": "m", "CONFIG_W1_SLAVE_DS2408_READBACK": "y", "CONFIG_W1_SLAVE_DS2413": "m", "CONFIG_W1_SLAVE_DS2406": "m", "CONFIG_W1_SLAVE_DS2423": "m", "CONFIG_W1_SLAVE_DS2805": "m", "CONFIG_W1_SLAVE_DS2430": "m", "CONFIG_W1_SLAVE_DS2431": "m", "CONFIG_W1_SLAVE_DS2433": "m", "CONFIG_W1_SLAVE_DS2433_CRC": "y", "CONFIG_W1_SLAVE_DS2438": "m", "CONFIG_W1_SLAVE_DS250X": "m", "CONFIG_W1_SLAVE_DS2780": "m", "CONFIG_W1_SLAVE_DS2781": "m", "CONFIG_W1_SLAVE_DS28E04": "m", "CONFIG_W1_SLAVE_DS28E17": "m", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_GENERIC_ADC_BATTERY": "not set", "CONFIG_IP5XXX_POWER": "m", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "m", "CONFIG_BATTERY_CW2015": "m", "CONFIG_BATTERY_DS2760": "m", "CONFIG_BATTERY_DS2780": "m", "CONFIG_BATTERY_DS2781": "m", "CONFIG_BATTERY_DS2782": "m", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "m", "CONFIG_CHARGER_SBS": "m", "CONFIG_MANAGER_SBS": "m", "CONFIG_BATTERY_BQ27XXX": "m", "CONFIG_BATTERY_BQ27XXX_I2C": "m", "CONFIG_BATTERY_BQ27XXX_HDQ": "m", "CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM": "not set", "CONFIG_CHARGER_AXP20X": "m", "CONFIG_BATTERY_AXP20X": "m", "CONFIG_AXP20X_POWER": "m", "CONFIG_AXP288_CHARGER": "m", "CONFIG_AXP288_FUEL_GAUGE": "m", "CONFIG_BATTERY_MAX17040": "m", "CONFIG_BATTERY_MAX17042": "m", "CONFIG_BATTERY_MAX1721X": "m", "CONFIG_CHARGER_ISP1704": "m", "CONFIG_CHARGER_MAX8903": "m", "CONFIG_CHARGER_LP8727": "m", "CONFIG_CHARGER_GPIO": "m", "CONFIG_CHARGER_MANAGER": "y", "CONFIG_CHARGER_LT3651": "m", "CONFIG_CHARGER_LTC4162L": "m", "CONFIG_CHARGER_MAX77976": "m", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24190": "m", "CONFIG_CHARGER_BQ24257": "m", "CONFIG_CHARGER_BQ24735": "m", "CONFIG_CHARGER_BQ2515X": "m", "CONFIG_CHARGER_BQ25890": "m", "CONFIG_CHARGER_BQ25980": "m", "CONFIG_CHARGER_BQ256XX": "m", "CONFIG_CHARGER_SMB347": "m", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "m", "CONFIG_BATTERY_RT5033": "m", "CONFIG_CHARGER_RT9455": "m", "CONFIG_CHARGER_RT9467": "m", "CONFIG_CHARGER_RT9471": "m", "CONFIG_CHARGER_CROS_USBPD": "m", "CONFIG_CHARGER_CROS_PCHG": "m", "CONFIG_CHARGER_BD99954": "m", "CONFIG_CHARGER_WILCO": "m", "CONFIG_BATTERY_SURFACE": "m", "CONFIG_CHARGER_SURFACE": "m", "CONFIG_BATTERY_UG3105": "m", "CONFIG_HWMON": "y", "CONFIG_HWMON_VID": "m", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "m", "CONFIG_SENSORS_ABITUGURU3": "m", "CONFIG_SENSORS_AD7314": "not set", "CONFIG_SENSORS_AD7414": "m", "CONFIG_SENSORS_AD7418": "m", "CONFIG_SENSORS_ADM1025": "m", "CONFIG_SENSORS_ADM1026": "m", "CONFIG_SENSORS_ADM1029": "m", "CONFIG_SENSORS_ADM1031": "m", "CONFIG_SENSORS_ADM1177": "m", "CONFIG_SENSORS_ADM9240": "m", "CONFIG_SENSORS_ADT7X10": "m", "CONFIG_SENSORS_ADT7310": "not set", "CONFIG_SENSORS_ADT7410": "m", "CONFIG_SENSORS_ADT7411": "m", "CONFIG_SENSORS_ADT7462": "m", "CONFIG_SENSORS_ADT7470": "m", "CONFIG_SENSORS_ADT7475": "m", "CONFIG_SENSORS_AHT10": "m", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "m", "CONFIG_SENSORS_AS370": "m", "CONFIG_SENSORS_ASC7621": "m", "CONFIG_SENSORS_AXI_FAN_CONTROL": "m", "CONFIG_SENSORS_K8TEMP": "m", "CONFIG_SENSORS_K10TEMP": "m", "CONFIG_SENSORS_FAM15H_POWER": "m", "CONFIG_SENSORS_APPLESMC": "m", "CONFIG_SENSORS_ASB100": "m", "CONFIG_SENSORS_ATXP1": "m", "CONFIG_SENSORS_CORSAIR_CPRO": "m", "CONFIG_SENSORS_CORSAIR_PSU": "m", "CONFIG_SENSORS_DRIVETEMP": "m", "CONFIG_SENSORS_DS620": "m", "CONFIG_SENSORS_DS1621": "m", "CONFIG_SENSORS_DELL_SMM": "m", "CONFIG_I8K": "y", "CONFIG_SENSORS_I5K_AMB": "m", "CONFIG_SENSORS_F71805F": "m", "CONFIG_SENSORS_F71882FG": "m", "CONFIG_SENSORS_F75375S": "m", "CONFIG_SENSORS_FSCHMD": "m", "CONFIG_SENSORS_FTSTEUTATES": "m", "CONFIG_SENSORS_GL518SM": "m", "CONFIG_SENSORS_GL520SM": "m", "CONFIG_SENSORS_G760A": "m", "CONFIG_SENSORS_G762": "m", "CONFIG_SENSORS_HIH6130": "m", "CONFIG_SENSORS_IBMAEM": "m", "CONFIG_SENSORS_IBMPEX": "m", "CONFIG_SENSORS_IIO_HWMON": "not set", "CONFIG_SENSORS_I5500": "m", "CONFIG_SENSORS_CORETEMP": "m", "CONFIG_SENSORS_IT87": "m", "CONFIG_SENSORS_JC42": "m", "CONFIG_SENSORS_POWR1220": "m", "CONFIG_SENSORS_LINEAGE": "m", "CONFIG_SENSORS_LTC2945": "m", "CONFIG_SENSORS_LTC2947": "m", "CONFIG_SENSORS_LTC2947_I2C": "m", "CONFIG_SENSORS_LTC2947_SPI": "m", "CONFIG_SENSORS_LTC2990": "m", "CONFIG_SENSORS_LTC2992": "m", "CONFIG_SENSORS_LTC4151": "m", "CONFIG_SENSORS_LTC4215": "m", "CONFIG_SENSORS_LTC4222": "m", "CONFIG_SENSORS_LTC4245": "m", "CONFIG_SENSORS_LTC4260": "m", "CONFIG_SENSORS_LTC4261": "m", "CONFIG_SENSORS_MAX1111": "not set", "CONFIG_SENSORS_MAX127": "m", "CONFIG_SENSORS_MAX16065": "m", "CONFIG_SENSORS_MAX1619": "m", "CONFIG_SENSORS_MAX1668": "m", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31722": "m", "CONFIG_SENSORS_MAX31730": "m", "CONFIG_SENSORS_MAX31760": "m", "CONFIG_SENSORS_MAX6620": "m", "CONFIG_SENSORS_MAX6621": "m", "CONFIG_SENSORS_MAX6639": "m", "CONFIG_SENSORS_MAX6650": "m", "CONFIG_SENSORS_MAX6697": "m", "CONFIG_SENSORS_MAX31790": "m", "CONFIG_SENSORS_MC34VR500": "m", "CONFIG_SENSORS_MCP3021": "m", "CONFIG_SENSORS_MLXREG_FAN": "m", "CONFIG_SENSORS_TC654": "m", "CONFIG_SENSORS_TPS23861": "m", "CONFIG_SENSORS_MR75203": "m", "CONFIG_SENSORS_ADCXX": "not set", "CONFIG_SENSORS_LM63": "m", "CONFIG_SENSORS_LM70": "not set", "CONFIG_SENSORS_LM73": "m", "CONFIG_SENSORS_LM75": "m", "CONFIG_SENSORS_LM77": "m", "CONFIG_SENSORS_LM78": "m", "CONFIG_SENSORS_LM80": "m", "CONFIG_SENSORS_LM83": "m", "CONFIG_SENSORS_LM85": "m", "CONFIG_SENSORS_LM87": "m", "CONFIG_SENSORS_LM90": "m", "CONFIG_SENSORS_LM92": "m", "CONFIG_SENSORS_LM93": "m", "CONFIG_SENSORS_LM95234": "m", "CONFIG_SENSORS_LM95241": "m", "CONFIG_SENSORS_LM95245": "m", "CONFIG_SENSORS_PC87360": "m", "CONFIG_SENSORS_PC87427": "m", "CONFIG_SENSORS_NTC_THERMISTOR": "not set", "CONFIG_SENSORS_NCT6683": "m", "CONFIG_SENSORS_NCT6775_CORE": "m", "CONFIG_SENSORS_NCT6775": "m", "CONFIG_SENSORS_NCT6775_I2C": "m", "CONFIG_SENSORS_NCT7802": "m", "CONFIG_SENSORS_NCT7904": "m", "CONFIG_SENSORS_NPCM7XX": "m", "CONFIG_SENSORS_NZXT_KRAKEN2": "m", "CONFIG_SENSORS_NZXT_SMART2": "m", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "m", "CONFIG_SENSORS_PCF8591": "m", "CONFIG_PMBUS": "m", "CONFIG_SENSORS_PMBUS": "m", "CONFIG_SENSORS_ACBEL_FSG032": "m", "CONFIG_SENSORS_ADM1266": "m", "CONFIG_SENSORS_ADM1275": "m", "CONFIG_SENSORS_BEL_PFE": "m", "CONFIG_SENSORS_BPA_RS600": "m", "CONFIG_SENSORS_DELTA_AHE50DC_FAN": "m", "CONFIG_SENSORS_FSP_3Y": "m", "CONFIG_SENSORS_IBM_CFFPS": "m", "CONFIG_SENSORS_DPS920AB": "m", "CONFIG_SENSORS_INSPUR_IPSPS": "m", "CONFIG_SENSORS_IR35221": "not set", "CONFIG_SENSORS_IR36021": "m", "CONFIG_SENSORS_IR38064": "m", "CONFIG_SENSORS_IR38064_REGULATOR": "y", "CONFIG_SENSORS_IRPS5401": "m", "CONFIG_SENSORS_ISL68137": "m", "CONFIG_SENSORS_LM25066": "m", "CONFIG_SENSORS_LM25066_REGULATOR": "y", "CONFIG_SENSORS_LT7182S": "m", "CONFIG_SENSORS_LTC2978": "m", "CONFIG_SENSORS_LTC2978_REGULATOR": "y", "CONFIG_SENSORS_LTC3815": "m", "CONFIG_SENSORS_MAX15301": "m", "CONFIG_SENSORS_MAX16064": "m", "CONFIG_SENSORS_MAX16601": "m", "CONFIG_SENSORS_MAX20730": "m", "CONFIG_SENSORS_MAX20751": "m", "CONFIG_SENSORS_MAX31785": "m", "CONFIG_SENSORS_MAX34440": "m", "CONFIG_SENSORS_MAX8688": "m", "CONFIG_SENSORS_MP2888": "m", "CONFIG_SENSORS_MP2975": "m", "CONFIG_SENSORS_MP5023": "m", "CONFIG_SENSORS_MPQ7932_REGULATOR": "y", "CONFIG_SENSORS_MPQ7932": "m", "CONFIG_SENSORS_PIM4328": "m", "CONFIG_SENSORS_PLI1209BC": "m", "CONFIG_SENSORS_PLI1209BC_REGULATOR": "y", "CONFIG_SENSORS_PM6764TR": "m", "CONFIG_SENSORS_PXE1610": "m", "CONFIG_SENSORS_Q54SJ108A2": "m", "CONFIG_SENSORS_STPDDC60": "m", "CONFIG_SENSORS_TDA38640": "m", "CONFIG_SENSORS_TDA38640_REGULATOR": "y", "CONFIG_SENSORS_TPS40422": "m", "CONFIG_SENSORS_TPS53679": "m", "CONFIG_SENSORS_TPS546D24": "m", "CONFIG_SENSORS_UCD9000": "m", "CONFIG_SENSORS_UCD9200": "m", "CONFIG_SENSORS_XDPE152": "m", "CONFIG_SENSORS_XDPE122": "m", "CONFIG_SENSORS_XDPE122_REGULATOR": "y", "CONFIG_SENSORS_ZL6100": "m", "CONFIG_SENSORS_SBTSI": "m", "CONFIG_SENSORS_SBRMI": "m", "CONFIG_SENSORS_SHT15": "m", "CONFIG_SENSORS_SHT21": "m", "CONFIG_SENSORS_SHT3x": "m", "CONFIG_SENSORS_SHT4x": "m", "CONFIG_SENSORS_SHTC1": "m", "CONFIG_SENSORS_SIS5595": "m", "CONFIG_SENSORS_DME1737": "m", "CONFIG_SENSORS_EMC1403": "m", "CONFIG_SENSORS_EMC2103": "m", "CONFIG_SENSORS_EMC2305": "m", "CONFIG_SENSORS_EMC6W201": "m", "CONFIG_SENSORS_SMSC47M1": "m", "CONFIG_SENSORS_SMSC47M192": "m", "CONFIG_SENSORS_SMSC47B397": "m", "CONFIG_SENSORS_SCH56XX_COMMON": "m", "CONFIG_SENSORS_SCH5627": "m", "CONFIG_SENSORS_SCH5636": "m", "CONFIG_SENSORS_STTS751": "m", "CONFIG_SENSORS_SMM665": "m", "CONFIG_SENSORS_ADC128D818": "m", "CONFIG_SENSORS_ADS7828": "m", "CONFIG_SENSORS_ADS7871": "not set", "CONFIG_SENSORS_AMC6821": "m", "CONFIG_SENSORS_INA209": "m", "CONFIG_SENSORS_INA2XX": "m", "CONFIG_SENSORS_INA238": "m", "CONFIG_SENSORS_INA3221": "m", "CONFIG_SENSORS_TC74": "m", "CONFIG_SENSORS_THMC50": "m", "CONFIG_SENSORS_TMP102": "m", "CONFIG_SENSORS_TMP103": "m", "CONFIG_SENSORS_TMP108": "m", "CONFIG_SENSORS_TMP401": "m", "CONFIG_SENSORS_TMP421": "m", "CONFIG_SENSORS_TMP464": "m", "CONFIG_SENSORS_TMP513": "m", "CONFIG_SENSORS_VIA_CPUTEMP": "m", "CONFIG_SENSORS_VIA686A": "m", "CONFIG_SENSORS_VT1211": "m", "CONFIG_SENSORS_VT8231": "m", "CONFIG_SENSORS_W83773G": "m", "CONFIG_SENSORS_W83781D": "m", "CONFIG_SENSORS_W83791D": "m", "CONFIG_SENSORS_W83792D": "m", "CONFIG_SENSORS_W83793": "m", "CONFIG_SENSORS_W83795": "m", "CONFIG_SENSORS_W83795_FANCTRL": "not set", "CONFIG_SENSORS_W83L785TS": "m", "CONFIG_SENSORS_W83L786NG": "m", "CONFIG_SENSORS_W83627HF": "m", "CONFIG_SENSORS_W83627EHF": "m", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "m", "CONFIG_SENSORS_ATK0110": "m", "CONFIG_SENSORS_ASUS_WMI": "m", "CONFIG_SENSORS_ASUS_EC": "m", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "y", "CONFIG_THERMAL_STATISTICS": "y", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_ACPI": "y", "CONFIG_THERMAL_WRITABLE_TRIPS": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "y", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "y", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_GOV_POWER_ALLOCATOR": "not set", "CONFIG_DEVFREQ_THERMAL": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "m", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_IOSF_CORE": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "m", "CONFIG_INT340X_THERMAL": "m", "CONFIG_ACPI_THERMAL_REL": "m", "CONFIG_INT3406_THERMAL": "m", "CONFIG_PROC_THERMAL_MMIO_RAPL": "m", "CONFIG_INTEL_BXT_PMIC_THERMAL": "m", "CONFIG_INTEL_PCH_THERMAL": "m", "CONFIG_INTEL_TCC_COOLING": "m", "CONFIG_INTEL_HFI_THERMAL": "y", "CONFIG_GENERIC_ADC_THERMAL": "m", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "y", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "y", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL": "m", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP": "y", "CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC": "m", "CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP": "y", "CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_SOFT_WATCHDOG_PRETIMEOUT": "y", "CONFIG_DA9062_WATCHDOG": "m", "CONFIG_WDAT_WDT": "m", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "m", "CONFIG_MLX_WDT": "m", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "m", "CONFIG_ADVANTECH_WDT": "m", "CONFIG_ADVANTECH_EC_WDT": "m", "CONFIG_ALIM1535_WDT": "m", "CONFIG_ALIM7101_WDT": "m", "CONFIG_EBC_C384_WDT": "m", "CONFIG_EXAR_WDT": "m", "CONFIG_F71808E_WDT": "m", "CONFIG_SP5100_TCO": "m", "CONFIG_SBC_FITPC2_WATCHDOG": "m", "CONFIG_EUROTECH_WDT": "m", "CONFIG_IB700_WDT": "m", "CONFIG_IBMASR": "m", "CONFIG_WAFER_WDT": "m", "CONFIG_I6300ESB_WDT": "m", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "m", "CONFIG_ITCO_VENDOR_SUPPORT": "y", "CONFIG_IT8712F_WDT": "m", "CONFIG_IT87_WDT": "m", "CONFIG_HP_WATCHDOG": "m", "CONFIG_HPWDT_NMI_DECODING": "y", "CONFIG_KEMPLD_WDT": "m", "CONFIG_SC1200_WDT": "m", "CONFIG_PC87413_WDT": "m", "CONFIG_NV_TCO": "m", "CONFIG_60XX_WDT": "m", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "m", "CONFIG_SMSC37B787_WDT": "m", "CONFIG_TQMX86_WDT": "m", "CONFIG_VIA_WDT": "m", "CONFIG_W83627HF_WDT": "m", "CONFIG_W83877F_WDT": "m", "CONFIG_W83977F_WDT": "m", "CONFIG_MACHZ_WDT": "m", "CONFIG_SBC_EPX_C3_WATCHDOG": "m", "CONFIG_INTEL_MEI_WDT": "m", "CONFIG_NI903X_WDT": "m", "CONFIG_NIC7018_WDT": "m", "CONFIG_SIEMENS_SIMATIC_IPC_WDT": "m", "CONFIG_MEN_A21_WDT": "m", "CONFIG_XEN_WDT": "m", "CONFIG_PCIPCWATCHDOG": "m", "CONFIG_WDTPCI": "m", "CONFIG_USBPCWATCHDOG": "m", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "m", "CONFIG_SSB_SPROM": "y", "CONFIG_SSB_BLOCKIO": "y", "CONFIG_SSB_PCIHOST_POSSIBLE": "y", "CONFIG_SSB_PCIHOST": "y", "CONFIG_SSB_B43_PCI_BRIDGE": "y", "CONFIG_SSB_SDIOHOST_POSSIBLE": "y", "CONFIG_SSB_SDIOHOST": "y", "CONFIG_SSB_DRIVER_PCICORE_POSSIBLE": "y", "CONFIG_SSB_DRIVER_PCICORE": "y", "CONFIG_SSB_DRIVER_GPIO": "y", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_BLOCKIO": "y", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "y", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_CORE": "m", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X": "m", "CONFIG_MFD_AXP20X_I2C": "m", "CONFIG_MFD_CROS_EC_DEV": "m", "CONFIG_MFD_MADERA": "m", "CONFIG_MFD_MADERA_I2C": "m", "CONFIG_MFD_MADERA_SPI": "m", "CONFIG_MFD_CS47L15": "y", "CONFIG_MFD_CS47L35": "y", "CONFIG_MFD_CS47L85": "y", "CONFIG_MFD_CS47L90": "y", "CONFIG_MFD_CS47L92": "y", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_SPI": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "m", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "m", "CONFIG_MFD_MC13XXX_SPI": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "m", "CONFIG_LPC_ICH": "m", "CONFIG_LPC_SCH": "m", "CONFIG_INTEL_SOC_PMIC_BXTWC": "m", "CONFIG_INTEL_SOC_PMIC_MRFLD": "m", "CONFIG_MFD_INTEL_LPSS": "m", "CONFIG_MFD_INTEL_LPSS_ACPI": "m", "CONFIG_MFD_INTEL_LPSS_PCI": "m", "CONFIG_MFD_INTEL_PMC_BXT": "m", "CONFIG_MFD_IQS62X": "m", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "m", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "m", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_OCELOT": "m", "CONFIG_EZX_PCAP": "not set", "CONFIG_MFD_VIPERBOARD": "m", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "m", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SIMPLE_MFD_I2C": "m", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "m", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "m", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "m", "CONFIG_TPS6507X": "m", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS65912_SPI": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "m", "CONFIG_MFD_LM3533": "m", "CONFIG_MFD_TQMX86": "m", "CONFIG_MFD_VX855": "m", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_ARIZONA_SPI": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM831X_SPI": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_RAVE_SP_CORE": "not set", "CONFIG_MFD_INTEL_M10_BMC_CORE": "not set", "CONFIG_MFD_INTEL_M10_BMC_SPI": "not set", "CONFIG_MFD_INTEL_M10_BMC_PMCI": "not set", "CONFIG_REGULATOR": "y", "CONFIG_REGULATOR_DEBUG": "not set", "CONFIG_REGULATOR_FIXED_VOLTAGE": "m", "CONFIG_REGULATOR_VIRTUAL_CONSUMER": "m", "CONFIG_REGULATOR_USERSPACE_CONSUMER": "m", "CONFIG_REGULATOR_88PG86X": "m", "CONFIG_REGULATOR_ACT8865": "m", "CONFIG_REGULATOR_AD5398": "m", "CONFIG_REGULATOR_ARIZONA_LDO1": "m", "CONFIG_REGULATOR_ARIZONA_MICSUPP": "m", "CONFIG_REGULATOR_AXP20X": "m", "CONFIG_REGULATOR_DA9062": "m", "CONFIG_REGULATOR_DA9210": "m", "CONFIG_REGULATOR_DA9211": "m", "CONFIG_REGULATOR_FAN53555": "m", "CONFIG_REGULATOR_GPIO": "m", "CONFIG_REGULATOR_ISL9305": "m", "CONFIG_REGULATOR_ISL6271A": "m", "CONFIG_REGULATOR_LM363X": "m", "CONFIG_REGULATOR_LP3971": "m", "CONFIG_REGULATOR_LP3972": "m", "CONFIG_REGULATOR_LP872X": "m", "CONFIG_REGULATOR_LP8755": "m", "CONFIG_REGULATOR_LTC3589": "m", "CONFIG_REGULATOR_LTC3676": "m", "CONFIG_REGULATOR_MAX1586": "m", "CONFIG_REGULATOR_MAX8649": "m", "CONFIG_REGULATOR_MAX8660": "m", "CONFIG_REGULATOR_MAX8893": "m", "CONFIG_REGULATOR_MAX8907": "m", "CONFIG_REGULATOR_MAX8952": "m", "CONFIG_REGULATOR_MAX20086": "m", "CONFIG_REGULATOR_MAX20411": "m", "CONFIG_REGULATOR_MAX77826": "m", "CONFIG_REGULATOR_MP8859": "m", "CONFIG_REGULATOR_MT6311": "m", "CONFIG_REGULATOR_MT6315": "m", "CONFIG_REGULATOR_PCA9450": "m", "CONFIG_REGULATOR_PV88060": "m", "CONFIG_REGULATOR_PV88080": "m", "CONFIG_REGULATOR_PV88090": "m", "CONFIG_REGULATOR_PWM": "m", "CONFIG_REGULATOR_QCOM_SPMI": "m", "CONFIG_REGULATOR_QCOM_USB_VBUS": "m", "CONFIG_REGULATOR_RT4801": "m", "CONFIG_REGULATOR_RT4803": "m", "CONFIG_REGULATOR_RT4831": "m", "CONFIG_REGULATOR_RT5190A": "m", "CONFIG_REGULATOR_RT5739": "m", "CONFIG_REGULATOR_RT5759": "m", "CONFIG_REGULATOR_RT6160": "m", "CONFIG_REGULATOR_RT6190": "m", "CONFIG_REGULATOR_RT6245": "m", "CONFIG_REGULATOR_RTQ2134": "m", "CONFIG_REGULATOR_RTMV20": "m", "CONFIG_REGULATOR_RTQ6752": "m", "CONFIG_REGULATOR_SLG51000": "m", "CONFIG_REGULATOR_TPS51632": "m", "CONFIG_REGULATOR_TPS62360": "m", "CONFIG_REGULATOR_TPS65023": "m", "CONFIG_REGULATOR_TPS6507X": "m", "CONFIG_REGULATOR_TPS65132": "m", "CONFIG_REGULATOR_TPS6524X": "m", "CONFIG_REGULATOR_TPS68470": "m", "CONFIG_REGULATOR_QCOM_LABIBB": "m", "CONFIG_RC_CORE": "m", "CONFIG_LIRC": "y", "CONFIG_RC_MAP": "m", "CONFIG_RC_DECODERS": "y", "CONFIG_IR_IMON_DECODER": "m", "CONFIG_IR_JVC_DECODER": "m", "CONFIG_IR_MCE_KBD_DECODER": "m", "CONFIG_IR_NEC_DECODER": "m", "CONFIG_IR_RC5_DECODER": "m", "CONFIG_IR_RC6_DECODER": "m", "CONFIG_IR_RCMM_DECODER": "m", "CONFIG_IR_SANYO_DECODER": "m", "CONFIG_IR_SHARP_DECODER": "m", "CONFIG_IR_SONY_DECODER": "m", "CONFIG_IR_XMP_DECODER": "m", "CONFIG_RC_DEVICES": "y", "CONFIG_IR_ENE": "m", "CONFIG_IR_FINTEK": "m", "CONFIG_IR_IGORPLUGUSB": "m", "CONFIG_IR_IGUANA": "m", "CONFIG_IR_IMON": "m", "CONFIG_IR_IMON_RAW": "m", "CONFIG_IR_ITE_CIR": "m", "CONFIG_IR_MCEUSB": "m", "CONFIG_IR_NUVOTON": "m", "CONFIG_IR_REDRAT3": "m", "CONFIG_IR_SERIAL": "m", "CONFIG_IR_SERIAL_TRANSMITTER": "y", "CONFIG_IR_STREAMZAP": "m", "CONFIG_IR_TOY": "m", "CONFIG_IR_TTUSBIR": "m", "CONFIG_IR_WINBOND_CIR": "m", "CONFIG_RC_ATI_REMOTE": "m", "CONFIG_RC_LOOPBACK": "m", "CONFIG_RC_XBOX_DVD": "m", "CONFIG_CEC_CORE": "m", "CONFIG_CEC_NOTIFIER": "y", "CONFIG_CEC_PIN": "y", "CONFIG_MEDIA_CEC_RC": "y", "CONFIG_CEC_PIN_ERROR_INJ": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "y", "CONFIG_CEC_CH7322": "m", "CONFIG_CEC_CROS_EC": "m", "CONFIG_CEC_GPIO": "m", "CONFIG_CEC_SECO": "m", "CONFIG_CEC_SECO_RC": "not set", "CONFIG_USB_PULSE8_CEC": "m", "CONFIG_USB_RAINSHADOW_CEC": "m", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "y", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "y", "CONFIG_MEDIA_RADIO_SUPPORT": "y", "CONFIG_MEDIA_SDR_SUPPORT": "y", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_DVB_CORE": "m", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_VIDEO_TUNER": "m", "CONFIG_V4L2_FLASH_LED_CLASS": "m", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_VIDEOBUF_GEN": "m", "CONFIG_VIDEOBUF_DMA_SG": "m", "CONFIG_MEDIA_CONTROLLER_DVB": "y", "CONFIG_DVB_MMAP": "not set", "CONFIG_DVB_NET": "y", "CONFIG_DVB_MAX_ADAPTERS": "8", "CONFIG_DVB_DYNAMIC_MINORS": "y", "CONFIG_DVB_DEMUX_SECTION_LOSS_LOG": "not set", "CONFIG_DVB_ULE_DEBUG": "not set", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "m", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "m", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "m", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "m", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_GO7007": "m", "CONFIG_VIDEO_GO7007_USB": "m", "CONFIG_VIDEO_GO7007_LOADER": "m", "CONFIG_VIDEO_GO7007_USB_S2250_BOARD": "m", "CONFIG_VIDEO_HDPVR": "m", "CONFIG_VIDEO_PVRUSB2": "m", "CONFIG_VIDEO_PVRUSB2_SYSFS": "y", "CONFIG_VIDEO_PVRUSB2_DVB": "y", "CONFIG_VIDEO_PVRUSB2_DEBUGIFC": "not set", "CONFIG_VIDEO_STK1160_COMMON": "m", "CONFIG_VIDEO_STK1160": "m", "CONFIG_VIDEO_AU0828": "m", "CONFIG_VIDEO_AU0828_V4L2": "y", "CONFIG_VIDEO_AU0828_RC": "y", "CONFIG_VIDEO_CX231XX": "m", "CONFIG_VIDEO_CX231XX_RC": "y", "CONFIG_VIDEO_CX231XX_ALSA": "m", "CONFIG_VIDEO_CX231XX_DVB": "m", "CONFIG_DVB_AS102": "m", "CONFIG_DVB_B2C2_FLEXCOP_USB": "m", "CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG": "not set", "CONFIG_DVB_USB_V2": "m", "CONFIG_DVB_USB_AF9015": "m", "CONFIG_DVB_USB_AF9035": "m", "CONFIG_DVB_USB_ANYSEE": "m", "CONFIG_DVB_USB_AU6610": "m", "CONFIG_DVB_USB_AZ6007": "m", "CONFIG_DVB_USB_CE6230": "m", "CONFIG_DVB_USB_DVBSKY": "m", "CONFIG_DVB_USB_EC168": "m", "CONFIG_DVB_USB_GL861": "m", "CONFIG_DVB_USB_LME2510": "m", "CONFIG_DVB_USB_MXL111SF": "m", "CONFIG_DVB_USB_RTL28XXU": "m", "CONFIG_DVB_USB_ZD1301": "m", "CONFIG_DVB_USB": "m", "CONFIG_DVB_USB_DEBUG": "not set", "CONFIG_DVB_USB_A800": "m", "CONFIG_DVB_USB_AF9005": "m", "CONFIG_DVB_USB_AF9005_REMOTE": "m", "CONFIG_DVB_USB_AZ6027": "m", "CONFIG_DVB_USB_CINERGY_T2": "m", "CONFIG_DVB_USB_CXUSB": "m", "CONFIG_DVB_USB_CXUSB_ANALOG": "y", "CONFIG_DVB_USB_DIB0700": "m", "CONFIG_DVB_USB_DIB3000MC": "m", "CONFIG_DVB_USB_DIBUSB_MB": "m", "CONFIG_DVB_USB_DIBUSB_MB_FAULTY": "not set", "CONFIG_DVB_USB_DIBUSB_MC": "m", "CONFIG_DVB_USB_DIGITV": "m", "CONFIG_DVB_USB_DTT200U": "m", "CONFIG_DVB_USB_DTV5100": "m", "CONFIG_DVB_USB_DW2102": "m", "CONFIG_DVB_USB_GP8PSK": "m", "CONFIG_DVB_USB_M920X": "m", "CONFIG_DVB_USB_NOVA_T_USB2": "m", "CONFIG_DVB_USB_OPERA1": "m", "CONFIG_DVB_USB_PCTV452E": "m", "CONFIG_DVB_USB_TECHNISAT_USB2": "m", "CONFIG_DVB_USB_TTUSB2": "m", "CONFIG_DVB_USB_UMT_010": "m", "CONFIG_DVB_USB_VP702X": "m", "CONFIG_DVB_USB_VP7045": "m", "CONFIG_SMS_USB_DRV": "m", "CONFIG_DVB_TTUSB_BUDGET": "m", "CONFIG_DVB_TTUSB_DEC": "m", "CONFIG_VIDEO_EM28XX": "m", "CONFIG_VIDEO_EM28XX_V4L2": "m", "CONFIG_VIDEO_EM28XX_ALSA": "m", "CONFIG_VIDEO_EM28XX_DVB": "m", "CONFIG_VIDEO_EM28XX_RC": "m", "CONFIG_USB_AIRSPY": "m", "CONFIG_USB_HACKRF": "m", "CONFIG_USB_MSI2500": "m", "CONFIG_MEDIA_PCI_SUPPORT": "y", "CONFIG_VIDEO_SOLO6X10": "m", "CONFIG_VIDEO_TW5864": "m", "CONFIG_VIDEO_TW68": "m", "CONFIG_VIDEO_TW686X": "m", "CONFIG_VIDEO_ZORAN": "m", "CONFIG_VIDEO_ZORAN_DC30": "y", "CONFIG_VIDEO_ZORAN_ZR36060": "y", "CONFIG_VIDEO_ZORAN_BUZ": "y", "CONFIG_VIDEO_ZORAN_DC10": "y", "CONFIG_VIDEO_ZORAN_LML33": "y", "CONFIG_VIDEO_ZORAN_LML33R10": "y", "CONFIG_VIDEO_ZORAN_AVS6EYES": "y", "CONFIG_VIDEO_DT3155": "m", "CONFIG_VIDEO_IVTV": "m", "CONFIG_VIDEO_IVTV_ALSA": "m", "CONFIG_VIDEO_FB_IVTV": "m", "CONFIG_VIDEO_FB_IVTV_FORCE_PAT": "not set", "CONFIG_VIDEO_HEXIUM_GEMINI": "m", "CONFIG_VIDEO_HEXIUM_ORION": "m", "CONFIG_VIDEO_MXB": "m", "CONFIG_VIDEO_BT848": "m", "CONFIG_DVB_BT8XX": "m", "CONFIG_VIDEO_COBALT": "not set", "CONFIG_VIDEO_CX18": "m", "CONFIG_VIDEO_CX18_ALSA": "m", "CONFIG_VIDEO_CX23885": "m", "CONFIG_MEDIA_ALTERA_CI": "m", "CONFIG_VIDEO_CX25821": "m", "CONFIG_VIDEO_CX25821_ALSA": "m", "CONFIG_VIDEO_CX88": "m", "CONFIG_VIDEO_CX88_ALSA": "m", "CONFIG_VIDEO_CX88_BLACKBIRD": "m", "CONFIG_VIDEO_CX88_DVB": "m", "CONFIG_VIDEO_CX88_ENABLE_VP3054": "y", "CONFIG_VIDEO_CX88_VP3054": "m", "CONFIG_VIDEO_CX88_MPEG": "m", "CONFIG_VIDEO_SAA7134": "m", "CONFIG_VIDEO_SAA7134_ALSA": "m", "CONFIG_VIDEO_SAA7134_RC": "y", "CONFIG_VIDEO_SAA7134_DVB": "m", "CONFIG_VIDEO_SAA7134_GO7007": "m", "CONFIG_VIDEO_SAA7164": "m", "CONFIG_DVB_B2C2_FLEXCOP_PCI": "m", "CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG": "not set", "CONFIG_DVB_DDBRIDGE": "m", "CONFIG_DVB_DDBRIDGE_MSIENABLE": "not set", "CONFIG_DVB_DM1105": "m", "CONFIG_MANTIS_CORE": "m", "CONFIG_DVB_MANTIS": "m", "CONFIG_DVB_HOPPER": "m", "CONFIG_DVB_NETUP_UNIDVB": "m", "CONFIG_DVB_NGENE": "m", "CONFIG_DVB_PLUTO2": "m", "CONFIG_DVB_PT1": "m", "CONFIG_DVB_PT3": "m", "CONFIG_DVB_SMIPCIE": "m", "CONFIG_DVB_BUDGET_CORE": "m", "CONFIG_DVB_BUDGET": "m", "CONFIG_DVB_BUDGET_CI": "m", "CONFIG_DVB_BUDGET_AV": "m", "CONFIG_IPU_BRIDGE": "m", "CONFIG_VIDEO_IPU3_CIO2": "m", "CONFIG_CIO2_BRIDGE": "y", "CONFIG_RADIO_ADAPTERS": "m", "CONFIG_RADIO_MAXIRADIO": "m", "CONFIG_RADIO_SAA7706H": "m", "CONFIG_RADIO_SHARK": "m", "CONFIG_RADIO_SHARK2": "m", "CONFIG_RADIO_SI4713": "m", "CONFIG_RADIO_TEA575X": "m", "CONFIG_RADIO_TEA5764": "m", "CONFIG_RADIO_TEF6862": "m", "CONFIG_RADIO_WL1273": "m", "CONFIG_USB_DSBR": "m", "CONFIG_USB_KEENE": "m", "CONFIG_USB_MA901": "m", "CONFIG_USB_MR800": "m", "CONFIG_USB_RAREMONO": "m", "CONFIG_RADIO_SI470X": "m", "CONFIG_USB_SI470X": "m", "CONFIG_I2C_SI470X": "not set", "CONFIG_USB_SI4713": "m", "CONFIG_PLATFORM_SI4713": "m", "CONFIG_I2C_SI4713": "m", "CONFIG_RADIO_WL128X": "m", "CONFIG_DVB_FIREDTV": "m", "CONFIG_DVB_FIREDTV_INPUT": "y", "CONFIG_MEDIA_COMMON_OPTIONS": "y", "CONFIG_CYPRESS_FIRMWARE": "m", "CONFIG_TTPCI_EEPROM": "m", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEO_CX2341X": "m", "CONFIG_VIDEO_TVEEPROM": "m", "CONFIG_DVB_B2C2_FLEXCOP": "m", "CONFIG_VIDEO_SAA7146": "m", "CONFIG_VIDEO_SAA7146_VV": "m", "CONFIG_SMS_SIANO_MDTV": "m", "CONFIG_SMS_SIANO_RC": "y", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_DMA_CONTIG": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_VIDEOBUF2_DMA_SG": "m", "CONFIG_VIDEOBUF2_DVB": "m", "CONFIG_MEDIA_ATTACH": "y", "CONFIG_VIDEO_IR_I2C": "m", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_APTINA_PLL": "m", "CONFIG_VIDEO_CCS_PLL": "m", "CONFIG_VIDEO_AR0521": "m", "CONFIG_VIDEO_HI556": "m", "CONFIG_VIDEO_HI846": "m", "CONFIG_VIDEO_HI847": "m", "CONFIG_VIDEO_IMX208": "m", "CONFIG_VIDEO_IMX214": "m", "CONFIG_VIDEO_IMX219": "m", "CONFIG_VIDEO_IMX258": "m", "CONFIG_VIDEO_IMX274": "m", "CONFIG_VIDEO_IMX290": "m", "CONFIG_VIDEO_IMX296": "m", "CONFIG_VIDEO_IMX319": "m", "CONFIG_VIDEO_IMX355": "m", "CONFIG_VIDEO_MAX9271_LIB": "m", "CONFIG_VIDEO_MT9M001": "m", "CONFIG_VIDEO_MT9M111": "m", "CONFIG_VIDEO_MT9P031": "m", "CONFIG_VIDEO_MT9T112": "m", "CONFIG_VIDEO_MT9V011": "m", "CONFIG_VIDEO_MT9V032": "m", "CONFIG_VIDEO_MT9V111": "m", "CONFIG_VIDEO_OG01A1B": "m", "CONFIG_VIDEO_OV02A10": "m", "CONFIG_VIDEO_OV08D10": "m", "CONFIG_VIDEO_OV08X40": "m", "CONFIG_VIDEO_OV13858": "m", "CONFIG_VIDEO_OV13B10": "m", "CONFIG_VIDEO_OV2640": "m", "CONFIG_VIDEO_OV2659": "m", "CONFIG_VIDEO_OV2680": "m", "CONFIG_VIDEO_OV2685": "m", "CONFIG_VIDEO_OV2740": "m", "CONFIG_VIDEO_OV4689": "m", "CONFIG_VIDEO_OV5647": "m", "CONFIG_VIDEO_OV5648": "m", "CONFIG_VIDEO_OV5670": "m", "CONFIG_VIDEO_OV5675": "m", "CONFIG_VIDEO_OV5693": "m", "CONFIG_VIDEO_OV5695": "m", "CONFIG_VIDEO_OV6650": "m", "CONFIG_VIDEO_OV7251": "m", "CONFIG_VIDEO_OV7640": "m", "CONFIG_VIDEO_OV7670": "m", "CONFIG_VIDEO_OV772X": "m", "CONFIG_VIDEO_OV7740": "m", "CONFIG_VIDEO_OV8856": "m", "CONFIG_VIDEO_OV8858": "m", "CONFIG_VIDEO_OV8865": "m", "CONFIG_VIDEO_OV9640": "m", "CONFIG_VIDEO_OV9650": "m", "CONFIG_VIDEO_OV9734": "m", "CONFIG_VIDEO_RDACM20": "m", "CONFIG_VIDEO_RDACM21": "m", "CONFIG_VIDEO_RJ54N1": "m", "CONFIG_VIDEO_S5C73M3": "m", "CONFIG_VIDEO_S5K5BAF": "m", "CONFIG_VIDEO_S5K6A3": "m", "CONFIG_VIDEO_CCS": "m", "CONFIG_VIDEO_ET8EK8": "m", "CONFIG_VIDEO_AD5820": "m", "CONFIG_VIDEO_AK7375": "m", "CONFIG_VIDEO_DW9714": "m", "CONFIG_VIDEO_DW9768": "m", "CONFIG_VIDEO_DW9807_VCM": "m", "CONFIG_VIDEO_ADP1653": "m", "CONFIG_VIDEO_LM3560": "m", "CONFIG_VIDEO_LM3646": "m", "CONFIG_VIDEO_CS3308": "m", "CONFIG_VIDEO_CS5345": "m", "CONFIG_VIDEO_CS53L32A": "m", "CONFIG_VIDEO_MSP3400": "m", "CONFIG_VIDEO_SONY_BTF_MPX": "m", "CONFIG_VIDEO_TDA1997X": "m", "CONFIG_VIDEO_TDA7432": "m", "CONFIG_VIDEO_TDA9840": "m", "CONFIG_VIDEO_TEA6415C": "m", "CONFIG_VIDEO_TEA6420": "m", "CONFIG_VIDEO_TLV320AIC23B": "m", "CONFIG_VIDEO_TVAUDIO": "m", "CONFIG_VIDEO_UDA1342": "m", "CONFIG_VIDEO_VP27SMPX": "m", "CONFIG_VIDEO_WM8739": "m", "CONFIG_VIDEO_WM8775": "m", "CONFIG_VIDEO_SAA6588": "m", "CONFIG_VIDEO_ADV7180": "m", "CONFIG_VIDEO_ADV7183": "m", "CONFIG_VIDEO_ADV7604": "m", "CONFIG_VIDEO_ADV7604_CEC": "y", "CONFIG_VIDEO_ADV7842": "m", "CONFIG_VIDEO_ADV7842_CEC": "y", "CONFIG_VIDEO_BT819": "m", "CONFIG_VIDEO_BT856": "m", "CONFIG_VIDEO_BT866": "m", "CONFIG_VIDEO_KS0127": "m", "CONFIG_VIDEO_ML86V7667": "m", "CONFIG_VIDEO_SAA7110": "m", "CONFIG_VIDEO_SAA711X": "m", "CONFIG_VIDEO_TC358743": "m", "CONFIG_VIDEO_TC358743_CEC": "y", "CONFIG_VIDEO_TC358746": "m", "CONFIG_VIDEO_TVP514X": "m", "CONFIG_VIDEO_TVP5150": "m", "CONFIG_VIDEO_TVP7002": "m", "CONFIG_VIDEO_TW2804": "m", "CONFIG_VIDEO_TW9903": "m", "CONFIG_VIDEO_TW9906": "m", "CONFIG_VIDEO_TW9910": "m", "CONFIG_VIDEO_VPX3220": "m", "CONFIG_VIDEO_SAA717X": "m", "CONFIG_VIDEO_CX25840": "m", "CONFIG_VIDEO_ADV7170": "m", "CONFIG_VIDEO_ADV7175": "m", "CONFIG_VIDEO_ADV7343": "m", "CONFIG_VIDEO_ADV7393": "m", "CONFIG_VIDEO_ADV7511": "m", "CONFIG_VIDEO_ADV7511_CEC": "y", "CONFIG_VIDEO_AK881X": "m", "CONFIG_VIDEO_SAA7127": "m", "CONFIG_VIDEO_SAA7185": "m", "CONFIG_VIDEO_THS8200": "m", "CONFIG_VIDEO_UPD64031A": "m", "CONFIG_VIDEO_UPD64083": "m", "CONFIG_VIDEO_SAA6752HS": "m", "CONFIG_SDR_MAX2175": "m", "CONFIG_VIDEO_I2C": "m", "CONFIG_VIDEO_M52790": "m", "CONFIG_VIDEO_ST_MIPID02": "not set", "CONFIG_VIDEO_THS7303": "m", "CONFIG_CXD2880_SPI_DRV": "m", "CONFIG_VIDEO_GS1662": "m", "CONFIG_MEDIA_TUNER": "m", "CONFIG_MEDIA_TUNER_E4000": "m", "CONFIG_MEDIA_TUNER_FC0011": "m", "CONFIG_MEDIA_TUNER_FC0012": "m", "CONFIG_MEDIA_TUNER_FC0013": "m", "CONFIG_MEDIA_TUNER_FC2580": "m", "CONFIG_MEDIA_TUNER_IT913X": "m", "CONFIG_MEDIA_TUNER_M88RS6000T": "m", "CONFIG_MEDIA_TUNER_MAX2165": "m", "CONFIG_MEDIA_TUNER_MC44S803": "m", "CONFIG_MEDIA_TUNER_MSI001": "m", "CONFIG_MEDIA_TUNER_MT2060": "m", "CONFIG_MEDIA_TUNER_MT2063": "m", "CONFIG_MEDIA_TUNER_MT20XX": "m", "CONFIG_MEDIA_TUNER_MT2131": "m", "CONFIG_MEDIA_TUNER_MT2266": "m", "CONFIG_MEDIA_TUNER_MXL301RF": "m", "CONFIG_MEDIA_TUNER_MXL5005S": "m", "CONFIG_MEDIA_TUNER_MXL5007T": "m", "CONFIG_MEDIA_TUNER_QM1D1B0004": "m", "CONFIG_MEDIA_TUNER_QM1D1C0042": "m", "CONFIG_MEDIA_TUNER_QT1010": "m", "CONFIG_MEDIA_TUNER_R820T": "m", "CONFIG_MEDIA_TUNER_SI2157": "m", "CONFIG_MEDIA_TUNER_SIMPLE": "m", "CONFIG_MEDIA_TUNER_TDA18212": "m", "CONFIG_MEDIA_TUNER_TDA18218": "m", "CONFIG_MEDIA_TUNER_TDA18250": "m", "CONFIG_MEDIA_TUNER_TDA18271": "m", "CONFIG_MEDIA_TUNER_TDA827X": "m", "CONFIG_MEDIA_TUNER_TDA8290": "m", "CONFIG_MEDIA_TUNER_TDA9887": "m", "CONFIG_MEDIA_TUNER_TEA5761": "m", "CONFIG_MEDIA_TUNER_TEA5767": "m", "CONFIG_MEDIA_TUNER_TUA9001": "m", "CONFIG_MEDIA_TUNER_XC2028": "m", "CONFIG_MEDIA_TUNER_XC4000": "m", "CONFIG_MEDIA_TUNER_XC5000": "m", "CONFIG_DVB_M88DS3103": "m", "CONFIG_DVB_MXL5XX": "m", "CONFIG_DVB_STB0899": "m", "CONFIG_DVB_STB6100": "m", "CONFIG_DVB_STV090x": "m", "CONFIG_DVB_STV0910": "m", "CONFIG_DVB_STV6110x": "m", "CONFIG_DVB_STV6111": "m", "CONFIG_DVB_DRXK": "m", "CONFIG_DVB_MN88472": "m", "CONFIG_DVB_MN88473": "m", "CONFIG_DVB_SI2165": "m", "CONFIG_DVB_TDA18271C2DD": "m", "CONFIG_DVB_CX24110": "m", "CONFIG_DVB_CX24116": "m", "CONFIG_DVB_CX24117": "m", "CONFIG_DVB_CX24120": "m", "CONFIG_DVB_CX24123": "m", "CONFIG_DVB_DS3000": "m", "CONFIG_DVB_MB86A16": "m", "CONFIG_DVB_MT312": "m", "CONFIG_DVB_S5H1420": "m", "CONFIG_DVB_SI21XX": "m", "CONFIG_DVB_STB6000": "m", "CONFIG_DVB_STV0288": "m", "CONFIG_DVB_STV0299": "m", "CONFIG_DVB_STV0900": "m", "CONFIG_DVB_STV6110": "m", "CONFIG_DVB_TDA10071": "m", "CONFIG_DVB_TDA10086": "m", "CONFIG_DVB_TDA8083": "m", "CONFIG_DVB_TDA8261": "m", "CONFIG_DVB_TDA826X": "m", "CONFIG_DVB_TS2020": "m", "CONFIG_DVB_TUA6100": "m", "CONFIG_DVB_TUNER_CX24113": "m", "CONFIG_DVB_TUNER_ITD1000": "m", "CONFIG_DVB_VES1X93": "m", "CONFIG_DVB_ZL10036": "m", "CONFIG_DVB_ZL10039": "m", "CONFIG_DVB_AF9013": "m", "CONFIG_DVB_AS102_FE": "m", "CONFIG_DVB_CX22700": "m", "CONFIG_DVB_CX22702": "m", "CONFIG_DVB_CXD2820R": "m", "CONFIG_DVB_CXD2841ER": "m", "CONFIG_DVB_DIB3000MB": "m", "CONFIG_DVB_DIB3000MC": "m", "CONFIG_DVB_DIB7000M": "m", "CONFIG_DVB_DIB7000P": "m", "CONFIG_DVB_DIB9000": "m", "CONFIG_DVB_DRXD": "m", "CONFIG_DVB_EC100": "m", "CONFIG_DVB_GP8PSK_FE": "m", "CONFIG_DVB_L64781": "m", "CONFIG_DVB_MT352": "m", "CONFIG_DVB_NXT6000": "m", "CONFIG_DVB_RTL2830": "m", "CONFIG_DVB_RTL2832": "m", "CONFIG_DVB_RTL2832_SDR": "m", "CONFIG_DVB_S5H1432": "m", "CONFIG_DVB_SI2168": "m", "CONFIG_DVB_SP887X": "m", "CONFIG_DVB_STV0367": "m", "CONFIG_DVB_TDA10048": "m", "CONFIG_DVB_TDA1004X": "m", "CONFIG_DVB_ZD1301_DEMOD": "m", "CONFIG_DVB_ZL10353": "m", "CONFIG_DVB_CXD2880": "m", "CONFIG_DVB_STV0297": "m", "CONFIG_DVB_TDA10021": "m", "CONFIG_DVB_TDA10023": "m", "CONFIG_DVB_VES1820": "m", "CONFIG_DVB_AU8522": "m", "CONFIG_DVB_AU8522_DTV": "m", "CONFIG_DVB_AU8522_V4L": "m", "CONFIG_DVB_BCM3510": "m", "CONFIG_DVB_LG2160": "m", "CONFIG_DVB_LGDT3305": "m", "CONFIG_DVB_LGDT3306A": "m", "CONFIG_DVB_LGDT330X": "m", "CONFIG_DVB_MXL692": "m", "CONFIG_DVB_NXT200X": "m", "CONFIG_DVB_OR51132": "m", "CONFIG_DVB_OR51211": "m", "CONFIG_DVB_S5H1409": "m", "CONFIG_DVB_S5H1411": "m", "CONFIG_DVB_DIB8000": "m", "CONFIG_DVB_MB86A20S": "m", "CONFIG_DVB_S921": "m", "CONFIG_DVB_MN88443X": "m", "CONFIG_DVB_TC90522": "m", "CONFIG_DVB_PLL": "m", "CONFIG_DVB_TUNER_DIB0070": "m", "CONFIG_DVB_TUNER_DIB0090": "m", "CONFIG_DVB_A8293": "m", "CONFIG_DVB_AF9033": "m", "CONFIG_DVB_ASCOT2E": "m", "CONFIG_DVB_ATBM8830": "m", "CONFIG_DVB_HELENE": "m", "CONFIG_DVB_HORUS3A": "m", "CONFIG_DVB_ISL6405": "m", "CONFIG_DVB_ISL6421": "m", "CONFIG_DVB_ISL6423": "m", "CONFIG_DVB_IX2505V": "m", "CONFIG_DVB_LGS8GL5": "m", "CONFIG_DVB_LGS8GXX": "m", "CONFIG_DVB_LNBH25": "m", "CONFIG_DVB_LNBH29": "m", "CONFIG_DVB_LNBP21": "m", "CONFIG_DVB_LNBP22": "m", "CONFIG_DVB_M88RS2000": "m", "CONFIG_DVB_TDA665x": "m", "CONFIG_DVB_DRX39XYJ": "m", "CONFIG_DVB_CXD2099": "m", "CONFIG_DVB_SP2": "m", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_VIDEO_CMDLINE": "y", "CONFIG_VIDEO_NOMODESET": "y", "CONFIG_AUXDISPLAY": "y", "CONFIG_CHARLCD": "m", "CONFIG_HD44780_COMMON": "m", "CONFIG_HD44780": "m", "CONFIG_KS0108": "m", "CONFIG_KS0108_PORT": "0x378", "CONFIG_KS0108_DELAY": "2", "CONFIG_CFAG12864B": "m", "CONFIG_CFAG12864B_RATE": "20", "CONFIG_IMG_ASCII_LCD": "not set", "CONFIG_HT16K33": "not set", "CONFIG_LCD2S": "not set", "CONFIG_PARPORT_PANEL": "m", "CONFIG_PANEL_PARPORT": "0", "CONFIG_PANEL_PROFILE": "5", "CONFIG_PANEL_CHANGE_MESSAGE": "not set", "CONFIG_CHARLCD_BL_OFF": "not set", "CONFIG_CHARLCD_BL_ON": "not set", "CONFIG_CHARLCD_BL_FLASH": "y", "CONFIG_PANEL": "m", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "y", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "y", "CONFIG_AGP_VIA": "y", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "y", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS": "not set", "CONFIG_DRM_DEBUG_MODESET_LOCK": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM": "not set", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "y", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_DP_AUX_CHARDEV": "y", "CONFIG_DRM_DP_CEC": "y", "CONFIG_DRM_TTM": "m", "CONFIG_DRM_EXEC": "m", "CONFIG_DRM_GPUVM": "m", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "m", "CONFIG_DRM_TTM_HELPER": "m", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_SUBALLOC_HELPER": "m", "CONFIG_DRM_SCHED": "m", "CONFIG_DRM_I2C_CH7006": "m", "CONFIG_DRM_I2C_SIL164": "m", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "m", "CONFIG_DRM_RADEON": "m", "CONFIG_DRM_RADEON_USERPTR": "y", "CONFIG_DRM_AMDGPU": "m", "CONFIG_DRM_AMDGPU_SI": "y", "CONFIG_DRM_AMDGPU_CIK": "y", "CONFIG_DRM_AMDGPU_USERPTR": "y", "CONFIG_DRM_AMDGPU_WERROR": "not set", "CONFIG_DRM_AMD_ACP": "y", "CONFIG_DRM_AMD_DC": "y", "CONFIG_DRM_AMD_DC_FP": "y", "CONFIG_DRM_AMD_DC_SI": "y", "CONFIG_DEBUG_KERNEL_DC": "not set", "CONFIG_DRM_AMD_SECURE_DISPLAY": "y", "CONFIG_HSA_AMD": "y", "CONFIG_HSA_AMD_SVM": "y", "CONFIG_HSA_AMD_P2P": "y", "CONFIG_DRM_NOUVEAU": "m", "CONFIG_NOUVEAU_DEBUG": "5", "CONFIG_NOUVEAU_DEBUG_DEFAULT": "3", "CONFIG_NOUVEAU_DEBUG_MMU": "not set", "CONFIG_NOUVEAU_DEBUG_PUSH": "not set", "CONFIG_DRM_NOUVEAU_BACKLIGHT": "y", "CONFIG_DRM_NOUVEAU_SVM": "y", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_GVT_KVMGT": "m", "CONFIG_DRM_I915_PXP": "y", "CONFIG_DRM_I915_WERROR": "not set", "CONFIG_DRM_I915_DEBUG": "not set", "CONFIG_DRM_I915_DEBUG_MMIO": "not set", "CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS": "not set", "CONFIG_DRM_I915_SW_FENCE_CHECK_DAG": "not set", "CONFIG_DRM_I915_DEBUG_GUC": "not set", "CONFIG_DRM_I915_SELFTEST": "not set", "CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS": "not set", "CONFIG_DRM_I915_DEBUG_VBLANK_EVADE": "not set", "CONFIG_DRM_I915_DEBUG_RUNTIME_PM": "not set", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_I915_GVT": "y", "CONFIG_DRM_VGEM": "m", "CONFIG_DRM_VKMS": "m", "CONFIG_DRM_VMWGFX": "m", "CONFIG_DRM_VMWGFX_MKSSTATS": "not set", "CONFIG_DRM_GMA500": "m", "CONFIG_DRM_UDL": "m", "CONFIG_DRM_AST": "m", "CONFIG_DRM_MGAG200": "m", "CONFIG_DRM_QXL": "m", "CONFIG_DRM_VIRTIO_GPU": "m", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_AUO_A030JTN01": "not set", "CONFIG_DRM_PANEL_ORISETECH_OTA5601A": "not set", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "m", "CONFIG_DRM_PANEL_WIDECHIPS_WS2401": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_LOONGSON": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "m", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "m", "CONFIG_DRM_PANEL_MIPI_DBI": "not set", "CONFIG_DRM_SIMPLEDRM": "y", "CONFIG_TINYDRM_HX8357D": "not set", "CONFIG_TINYDRM_ILI9163": "not set", "CONFIG_TINYDRM_ILI9225": "not set", "CONFIG_TINYDRM_ILI9341": "not set", "CONFIG_TINYDRM_ILI9486": "not set", "CONFIG_TINYDRM_MI0283QT": "not set", "CONFIG_TINYDRM_REPAPER": "not set", "CONFIG_TINYDRM_ST7586": "not set", "CONFIG_TINYDRM_ST7735R": "not set", "CONFIG_DRM_XEN": "y", "CONFIG_DRM_XEN_FRONTEND": "m", "CONFIG_DRM_VBOXVIDEO": "m", "CONFIG_DRM_GUD": "m", "CONFIG_DRM_SSD130X": "m", "CONFIG_DRM_SSD130X_I2C": "m", "CONFIG_DRM_SSD130X_SPI": "m", "CONFIG_DRM_HYPERV": "m", "CONFIG_DRM_LEGACY": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_DRM_LIB_RANDOM": "not set", "CONFIG_DRM_PRIVACY_SCREEN": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "y", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_LE80578": "not set", "CONFIG_FB_INTEL": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "m", "CONFIG_FB_VIRTUAL": "m", "CONFIG_XEN_FBDEV_FRONTEND": "m", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_HYPERV": "not set", "CONFIG_FB_SSD1307": "m", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "y", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYS_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_BACKLIGHT": "m", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "y", "CONFIG_LCD_CLASS_DEVICE": "m", "CONFIG_LCD_L4F00242T03": "not set", "CONFIG_LCD_LMS283GF05": "not set", "CONFIG_LCD_LTV350QV": "not set", "CONFIG_LCD_ILI922X": "not set", "CONFIG_LCD_ILI9320": "not set", "CONFIG_LCD_TDO24M": "not set", "CONFIG_LCD_VGG2432A4": "not set", "CONFIG_LCD_PLATFORM": "m", "CONFIG_LCD_AMS369FG06": "not set", "CONFIG_LCD_LMS501KF03": "not set", "CONFIG_LCD_HX8357": "not set", "CONFIG_LCD_OTM3225A": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "y", "CONFIG_BACKLIGHT_KTD253": "m", "CONFIG_BACKLIGHT_KTZ8866": "m", "CONFIG_BACKLIGHT_LM3533": "m", "CONFIG_BACKLIGHT_PWM": "m", "CONFIG_BACKLIGHT_APPLE": "m", "CONFIG_BACKLIGHT_QCOM_WLED": "m", "CONFIG_BACKLIGHT_RT4831": "m", "CONFIG_BACKLIGHT_SAHARA": "m", "CONFIG_BACKLIGHT_ADP8860": "m", "CONFIG_BACKLIGHT_ADP8870": "m", "CONFIG_BACKLIGHT_LM3630A": "m", "CONFIG_BACKLIGHT_LM3639": "m", "CONFIG_BACKLIGHT_LP855X": "m", "CONFIG_BACKLIGHT_GPIO": "m", "CONFIG_BACKLIGHT_LV5207LP": "m", "CONFIG_BACKLIGHT_BD6107": "m", "CONFIG_BACKLIGHT_ARCXCNN": "m", "CONFIG_VGASTATE": "not set", "CONFIG_VIDEOMODE_HELPERS": "y", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "y", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "y", "CONFIG_DRM_ACCEL_HABANALABS": "m", "CONFIG_DRM_ACCEL_IVPU": "m", "CONFIG_DRM_ACCEL_QAIC": "m", "CONFIG_SOUND": "m", "CONFIG_SOUND_OSS_CORE": "y", "CONFIG_SOUND_OSS_CORE_PRECLAIM": "not set", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_PCM_ELD": "y", "CONFIG_SND_DMAENGINE_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_UMP": "m", "CONFIG_SND_UMP_LEGACY_RAWMIDI": "y", "CONFIG_SND_COMPRESS_OFFLOAD": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "y", "CONFIG_SND_MIXER_OSS": "m", "CONFIG_SND_PCM_OSS": "m", "CONFIG_SND_PCM_OSS_PLUGINS": "y", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "y", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_VERBOSE_PRINTK": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "y", "CONFIG_SND_DEBUG_VERBOSE": "not set", "CONFIG_SND_PCM_XRUN_DEBUG": "y", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_CTL_DEBUG": "not set", "CONFIG_SND_JACK_INJECTION_DEBUG": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "m", "CONFIG_SND_SEQUENCER_OSS": "m", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "y", "CONFIG_SND_SEQ_UMP_CLIENT": "m", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_OPL4_LIB_SEQ": "not set", "CONFIG_SND_VX_LIB": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "m", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_VIRMIDI": "m", "CONFIG_SND_MTPAV": "m", "CONFIG_SND_MTS64": "m", "CONFIG_SND_SERIAL_U16550": "m", "CONFIG_SND_MPU401": "m", "CONFIG_SND_PORTMAN2X4": "m", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_SB_COMMON": "m", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "m", "CONFIG_SND_ALS300": "m", "CONFIG_SND_ALS4000": "m", "CONFIG_SND_ALI5451": "m", "CONFIG_SND_ASIHPI": "m", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "m", "CONFIG_SND_AU8820": "m", "CONFIG_SND_AU8830": "m", "CONFIG_SND_AW2": "m", "CONFIG_SND_AZT3328": "m", "CONFIG_SND_BT87X": "m", "CONFIG_SND_BT87X_OVERCLOCK": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "m", "CONFIG_SND_CS46XX": "m", "CONFIG_SND_CS46XX_NEW_DSP": "y", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "m", "CONFIG_SND_GINA20": "m", "CONFIG_SND_LAYLA20": "m", "CONFIG_SND_DARLA24": "m", "CONFIG_SND_GINA24": "m", "CONFIG_SND_LAYLA24": "m", "CONFIG_SND_MONA": "m", "CONFIG_SND_MIA": "m", "CONFIG_SND_ECHO3G": "m", "CONFIG_SND_INDIGO": "m", "CONFIG_SND_INDIGOIO": "m", "CONFIG_SND_INDIGODJ": "m", "CONFIG_SND_INDIGOIOX": "m", "CONFIG_SND_INDIGODJX": "m", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "m", "CONFIG_SND_ES1938": "m", "CONFIG_SND_ES1968": "m", "CONFIG_SND_ES1968_INPUT": "y", "CONFIG_SND_ES1968_RADIO": "y", "CONFIG_SND_FM801": "m", "CONFIG_SND_FM801_TEA575X_BOOL": "y", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "m", "CONFIG_SND_KORG1212": "m", "CONFIG_SND_LOLA": "m", "CONFIG_SND_LX6464ES": "m", "CONFIG_SND_MAESTRO3": "m", "CONFIG_SND_MAESTRO3_INPUT": "y", "CONFIG_SND_MIXART": "m", "CONFIG_SND_NM256": "m", "CONFIG_SND_PCXHR": "m", "CONFIG_SND_RIPTIDE": "m", "CONFIG_SND_RME32": "m", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "m", "CONFIG_SND_TRIDENT": "m", "CONFIG_SND_VIA82XX": "m", "CONFIG_SND_VIA82XX_MODEM": "m", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "m", "CONFIG_SND_YMFPCI": "m", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "y", "CONFIG_SND_HDA_RECONFIG": "y", "CONFIG_SND_HDA_INPUT_BEEP": "y", "CONFIG_SND_HDA_INPUT_BEEP_MODE": "1", "CONFIG_SND_HDA_PATCH_LOADER": "y", "CONFIG_SND_HDA_CIRRUS_SCODEC": "m", "CONFIG_SND_HDA_SCODEC_CS35L41": "m", "CONFIG_SND_HDA_CS_DSP_CONTROLS": "m", "CONFIG_SND_HDA_SCODEC_CS35L41_I2C": "m", "CONFIG_SND_HDA_SCODEC_CS35L41_SPI": "m", "CONFIG_SND_HDA_SCODEC_CS35L56": "m", "CONFIG_SND_HDA_SCODEC_CS35L56_I2C": "m", "CONFIG_SND_HDA_SCODEC_CS35L56_SPI": "m", "CONFIG_SND_HDA_SCODEC_TAS2781_I2C": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "m", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "1", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_EXT_CORE": "m", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_INTEL_BYT_PREFER_SOF": "y", "CONFIG_SND_SPI": "not set", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "y", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "m", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "m", "CONFIG_SND_USB_CAIAQ_INPUT": "y", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "m", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "m", "CONFIG_SND_USB_LINE6": "m", "CONFIG_SND_USB_POD": "m", "CONFIG_SND_USB_PODHD": "m", "CONFIG_SND_USB_TONEPORT": "m", "CONFIG_SND_USB_VARIAX": "m", "CONFIG_SND_FIREWIRE": "y", "CONFIG_SND_FIREWIRE_LIB": "m", "CONFIG_SND_DICE": "m", "CONFIG_SND_OXFW": "m", "CONFIG_SND_ISIGHT": "m", "CONFIG_SND_FIREWORKS": "m", "CONFIG_SND_BEBOB": "m", "CONFIG_SND_FIREWIRE_DIGI00X": "m", "CONFIG_SND_FIREWIRE_TASCAM": "m", "CONFIG_SND_FIREWIRE_MOTU": "m", "CONFIG_SND_FIREFACE": "m", "CONFIG_SND_SOC": "m", "CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM": "y", "CONFIG_SND_SOC_COMPRESS": "y", "CONFIG_SND_SOC_TOPOLOGY": "y", "CONFIG_SND_SOC_ACPI": "m", "CONFIG_SND_SOC_ADI": "m", "CONFIG_SND_SOC_ADI_AXI_I2S": "m", "CONFIG_SND_SOC_ADI_AXI_SPDIF": "m", "CONFIG_SND_SOC_AMD_ACP": "m", "CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH": "m", "CONFIG_SND_SOC_AMD_CZ_RT5645_MACH": "m", "CONFIG_SND_SOC_AMD_ST_ES8336_MACH": "m", "CONFIG_SND_SOC_AMD_ACP3x": "m", "CONFIG_SND_SOC_AMD_RV_RT5682_MACH": "m", "CONFIG_SND_SOC_AMD_RENOIR": "m", "CONFIG_SND_SOC_AMD_RENOIR_MACH": "m", "CONFIG_SND_SOC_AMD_ACP5x": "m", "CONFIG_SND_SOC_AMD_VANGOGH_MACH": "m", "CONFIG_SND_SOC_AMD_ACP6x": "m", "CONFIG_SND_SOC_AMD_YC_MACH": "m", "CONFIG_SND_AMD_ACP_CONFIG": "m", "CONFIG_SND_SOC_AMD_ACP_COMMON": "m", "CONFIG_SND_SOC_AMD_ACP_PDM": "m", "CONFIG_SND_SOC_AMD_ACP_LEGACY_COMMON": "m", "CONFIG_SND_SOC_AMD_ACP_I2S": "m", "CONFIG_SND_SOC_AMD_ACP_PCM": "m", "CONFIG_SND_SOC_AMD_ACP_PCI": "m", "CONFIG_SND_AMD_ASOC_RENOIR": "m", "CONFIG_SND_AMD_ASOC_REMBRANDT": "m", "CONFIG_SND_SOC_AMD_MACH_COMMON": "m", "CONFIG_SND_SOC_AMD_LEGACY_MACH": "m", "CONFIG_SND_SOC_AMD_SOF_MACH": "m", "CONFIG_SND_SOC_AMD_RPL_ACP6x": "m", "CONFIG_SND_SOC_AMD_PS": "m", "CONFIG_SND_SOC_AMD_PS_MACH": "m", "CONFIG_SND_ATMEL_SOC": "not set", "CONFIG_SND_BCM63XX_I2S_WHISTLER": "not set", "CONFIG_SND_DESIGNWARE_I2S": "m", "CONFIG_SND_DESIGNWARE_PCM": "y", "CONFIG_SND_SOC_FSL_ASRC": "not set", "CONFIG_SND_SOC_FSL_SAI": "not set", "CONFIG_SND_SOC_FSL_AUDMIX": "not set", "CONFIG_SND_SOC_FSL_SSI": "not set", "CONFIG_SND_SOC_FSL_SPDIF": "not set", "CONFIG_SND_SOC_FSL_ESAI": "not set", "CONFIG_SND_SOC_FSL_MICFIL": "not set", "CONFIG_SND_SOC_FSL_XCVR": "not set", "CONFIG_SND_SOC_FSL_RPMSG": "not set", "CONFIG_SND_SOC_IMX_AUDMUX": "not set", "CONFIG_SND_I2S_HI6210_I2S": "m", "CONFIG_SND_SOC_IMG": "not set", "CONFIG_SND_SOC_INTEL_SST_TOPLEVEL": "y", "CONFIG_SND_SOC_INTEL_SST": "m", "CONFIG_SND_SOC_INTEL_CATPT": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI": "m", "CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE": "m", "CONFIG_SND_SOC_INTEL_SKL": "m", "CONFIG_SND_SOC_INTEL_APL": "m", "CONFIG_SND_SOC_INTEL_KBL": "m", "CONFIG_SND_SOC_INTEL_GLK": "m", "CONFIG_SND_SOC_INTEL_CNL": "m", "CONFIG_SND_SOC_INTEL_CFL": "m", "CONFIG_SND_SOC_INTEL_CML_H": "m", "CONFIG_SND_SOC_INTEL_CML_LP": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK": "m", "CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC": "y", "CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON": "m", "CONFIG_SND_SOC_ACPI_INTEL_MATCH": "m", "CONFIG_SND_SOC_INTEL_AVS": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_DA7219": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_DMIC": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_ES8336": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_HDAUDIO": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_I2S_TEST": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98927": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98357A": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_MAX98373": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_NAU8825": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_PROBE": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT274": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT286": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT298": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT5663": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_RT5682": "m", "CONFIG_SND_SOC_INTEL_AVS_MACH_SSM4567": "m", "CONFIG_SND_SOC_INTEL_MACH": "y", "CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES": "y", "CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_REALTEK_COMMON": "m", "CONFIG_SND_SOC_INTEL_SOF_CIRRUS_COMMON": "m", "CONFIG_SND_SOC_INTEL_HASWELL_MACH": "m", "CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH": "m", "CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH": "m", "CONFIG_SND_SOC_INTEL_BROADWELL_MACH": "m", "CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH": "m", "CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH": "m", "CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH": "m", "CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH": "not set", "CONFIG_SND_SOC_INTEL_SKL_RT286_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC": "m", "CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON": "m", "CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_BXT_RT298_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH": "m", "CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH": "m", "CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH": "m", "CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH": "m", "CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH": "m", "CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH": "m", "CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH": "m", "CONFIG_SND_SOC_MTK_BTCVSD": "m", "CONFIG_SND_SOC_SOF_TOPLEVEL": "y", "CONFIG_SND_SOC_SOF_PCI_DEV": "m", "CONFIG_SND_SOC_SOF_PCI": "m", "CONFIG_SND_SOC_SOF_ACPI": "m", "CONFIG_SND_SOC_SOF_ACPI_DEV": "m", "CONFIG_SND_SOC_SOF_DEBUG_PROBES": "m", "CONFIG_SND_SOC_SOF_CLIENT": "m", "CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT": "not set", "CONFIG_SND_SOC_SOF": "m", "CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE": "y", "CONFIG_SND_SOC_SOF_IPC3": "y", "CONFIG_SND_SOC_SOF_INTEL_IPC4": "y", "CONFIG_SND_SOC_SOF_AMD_TOPLEVEL": "m", "CONFIG_SND_SOC_SOF_AMD_COMMON": "m", "CONFIG_SND_SOC_SOF_AMD_RENOIR": "m", "CONFIG_SND_SOC_SOF_AMD_VANGOGH": "m", "CONFIG_SND_SOC_SOF_AMD_REMBRANDT": "m", "CONFIG_SND_SOC_SOF_ACP_PROBES": "m", "CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL": "y", "CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC": "m", "CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP": "m", "CONFIG_SND_SOC_SOF_INTEL_COMMON": "m", "CONFIG_SND_SOC_SOF_BAYTRAIL": "m", "CONFIG_SND_SOC_SOF_BROADWELL": "m", "CONFIG_SND_SOC_SOF_MERRIFIELD": "m", "CONFIG_SND_SOC_SOF_INTEL_SKL": "m", "CONFIG_SND_SOC_SOF_SKYLAKE": "m", "CONFIG_SND_SOC_SOF_KABYLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_APL": "m", "CONFIG_SND_SOC_SOF_APOLLOLAKE": "m", "CONFIG_SND_SOC_SOF_GEMINILAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_CNL": "m", "CONFIG_SND_SOC_SOF_CANNONLAKE": "m", "CONFIG_SND_SOC_SOF_COFFEELAKE": "m", "CONFIG_SND_SOC_SOF_COMETLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_ICL": "m", "CONFIG_SND_SOC_SOF_ICELAKE": "m", "CONFIG_SND_SOC_SOF_JASPERLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_TGL": "m", "CONFIG_SND_SOC_SOF_TIGERLAKE": "m", "CONFIG_SND_SOC_SOF_ELKHARTLAKE": "m", "CONFIG_SND_SOC_SOF_ALDERLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_MTL": "m", "CONFIG_SND_SOC_SOF_METEORLAKE": "m", "CONFIG_SND_SOC_SOF_INTEL_LNL": "m", "CONFIG_SND_SOC_SOF_LUNARLAKE": "m", "CONFIG_SND_SOC_SOF_HDA_COMMON": "m", "CONFIG_SND_SOC_SOF_HDA_MLINK": "m", "CONFIG_SND_SOC_SOF_HDA_LINK": "y", "CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC": "y", "CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE": "m", "CONFIG_SND_SOC_SOF_HDA": "m", "CONFIG_SND_SOC_SOF_HDA_PROBES": "m", "CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE": "m", "CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE": "m", "CONFIG_SND_SOC_SOF_XTENSA": "m", "CONFIG_SND_SOC_XILINX_I2S": "not set", "CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER": "not set", "CONFIG_SND_SOC_XILINX_SPDIF": "not set", "CONFIG_SND_SOC_XTFPGA_I2S": "not set", "CONFIG_SND_SOC_I2C_AND_SPI": "m", "CONFIG_SND_SOC_WM_ADSP": "m", "CONFIG_SND_SOC_AC97_CODEC": "not set", "CONFIG_SND_SOC_ADAU1372_I2C": "not set", "CONFIG_SND_SOC_ADAU1372_SPI": "not set", "CONFIG_SND_SOC_ADAU1701": "not set", "CONFIG_SND_SOC_ADAU1761_I2C": "not set", "CONFIG_SND_SOC_ADAU1761_SPI": "not set", "CONFIG_SND_SOC_ADAU7002": "m", "CONFIG_SND_SOC_ADAU7118_HW": "not set", "CONFIG_SND_SOC_ADAU7118_I2C": "not set", "CONFIG_SND_SOC_AK4104": "not set", "CONFIG_SND_SOC_AK4118": "not set", "CONFIG_SND_SOC_AK4375": "not set", "CONFIG_SND_SOC_AK4458": "not set", "CONFIG_SND_SOC_AK4554": "not set", "CONFIG_SND_SOC_AK4613": "not set", "CONFIG_SND_SOC_AK4642": "not set", "CONFIG_SND_SOC_AK5386": "not set", "CONFIG_SND_SOC_AK5558": "not set", "CONFIG_SND_SOC_ALC5623": "not set", "CONFIG_SND_SOC_AW8738": "not set", "CONFIG_SND_SOC_AW88395": "not set", "CONFIG_SND_SOC_BD28623": "not set", "CONFIG_SND_SOC_BT_SCO": "m", "CONFIG_SND_SOC_CROS_EC_CODEC": "m", "CONFIG_SND_SOC_CS35L32": "not set", "CONFIG_SND_SOC_CS35L33": "not set", "CONFIG_SND_SOC_CS35L34": "m", "CONFIG_SND_SOC_CS35L35": "m", "CONFIG_SND_SOC_CS35L36": "m", "CONFIG_SND_SOC_CS35L41_LIB": "m", "CONFIG_SND_SOC_CS35L41": "m", "CONFIG_SND_SOC_CS35L41_SPI": "m", "CONFIG_SND_SOC_CS35L41_I2C": "m", "CONFIG_SND_SOC_CS35L45": "m", "CONFIG_SND_SOC_CS35L45_SPI": "m", "CONFIG_SND_SOC_CS35L45_I2C": "m", "CONFIG_SND_SOC_CS35L56": "m", "CONFIG_SND_SOC_CS35L56_SHARED": "m", "CONFIG_SND_SOC_CS35L56_I2C": "m", "CONFIG_SND_SOC_CS35L56_SPI": "m", "CONFIG_SND_SOC_CS35L56_SDW": "m", "CONFIG_SND_SOC_CS42L42_CORE": "m", "CONFIG_SND_SOC_CS42L42": "m", "CONFIG_SND_SOC_CS42L42_SDW": "m", "CONFIG_SND_SOC_CS42L51_I2C": "not set", "CONFIG_SND_SOC_CS42L52": "not set", "CONFIG_SND_SOC_CS42L56": "not set", "CONFIG_SND_SOC_CS42L73": "not set", "CONFIG_SND_SOC_CS42L83": "not set", "CONFIG_SND_SOC_CS4234": "not set", "CONFIG_SND_SOC_CS4265": "not set", "CONFIG_SND_SOC_CS4270": "not set", "CONFIG_SND_SOC_CS4271_I2C": "not set", "CONFIG_SND_SOC_CS4271_SPI": "not set", "CONFIG_SND_SOC_CS42XX8_I2C": "not set", "CONFIG_SND_SOC_CS43130": "not set", "CONFIG_SND_SOC_CS4341": "m", "CONFIG_SND_SOC_CS4349": "not set", "CONFIG_SND_SOC_CS53L30": "not set", "CONFIG_SND_SOC_CX2072X": "m", "CONFIG_SND_SOC_DA7213": "m", "CONFIG_SND_SOC_DA7219": "m", "CONFIG_SND_SOC_DMIC": "m", "CONFIG_SND_SOC_ES7134": "not set", "CONFIG_SND_SOC_ES7241": "not set", "CONFIG_SND_SOC_ES8316": "m", "CONFIG_SND_SOC_ES8326": "m", "CONFIG_SND_SOC_ES8328_I2C": "not set", "CONFIG_SND_SOC_ES8328_SPI": "not set", "CONFIG_SND_SOC_GTM601": "not set", "CONFIG_SND_SOC_HDAC_HDMI": "m", "CONFIG_SND_SOC_HDAC_HDA": "m", "CONFIG_SND_SOC_HDA": "m", "CONFIG_SND_SOC_ICS43432": "not set", "CONFIG_SND_SOC_IDT821034": "not set", "CONFIG_SND_SOC_INNO_RK3036": "not set", "CONFIG_SND_SOC_MAX98088": "not set", "CONFIG_SND_SOC_MAX98090": "m", "CONFIG_SND_SOC_MAX98357A": "m", "CONFIG_SND_SOC_MAX98504": "not set", "CONFIG_SND_SOC_MAX9867": "not set", "CONFIG_SND_SOC_MAX98927": "m", "CONFIG_SND_SOC_MAX98520": "m", "CONFIG_SND_SOC_MAX98363": "m", "CONFIG_SND_SOC_MAX98373": "m", "CONFIG_SND_SOC_MAX98373_I2C": "m", "CONFIG_SND_SOC_MAX98373_SDW": "m", "CONFIG_SND_SOC_MAX98388": "m", "CONFIG_SND_SOC_MAX98390": "m", "CONFIG_SND_SOC_MAX98396": "m", "CONFIG_SND_SOC_MAX9860": "not set", "CONFIG_SND_SOC_MSM8916_WCD_ANALOG": "not set", "CONFIG_SND_SOC_MSM8916_WCD_DIGITAL": "not set", "CONFIG_SND_SOC_PCM1681": "not set", "CONFIG_SND_SOC_PCM1789_I2C": "not set", "CONFIG_SND_SOC_PCM179X_I2C": "not set", "CONFIG_SND_SOC_PCM179X_SPI": "not set", "CONFIG_SND_SOC_PCM186X_I2C": "not set", "CONFIG_SND_SOC_PCM186X_SPI": "not set", "CONFIG_SND_SOC_PCM3060_I2C": "not set", "CONFIG_SND_SOC_PCM3060_SPI": "not set", "CONFIG_SND_SOC_PCM3168A_I2C": "not set", "CONFIG_SND_SOC_PCM3168A_SPI": "not set", "CONFIG_SND_SOC_PCM5102A": "not set", "CONFIG_SND_SOC_PCM512x": "m", "CONFIG_SND_SOC_PCM512x_I2C": "m", "CONFIG_SND_SOC_PCM512x_SPI": "not set", "CONFIG_SND_SOC_PEB2466": "not set", "CONFIG_SND_SOC_RK3328": "not set", "CONFIG_SND_SOC_RL6231": "m", "CONFIG_SND_SOC_RL6347A": "m", "CONFIG_SND_SOC_RT274": "m", "CONFIG_SND_SOC_RT286": "m", "CONFIG_SND_SOC_RT298": "m", "CONFIG_SND_SOC_RT1011": "m", "CONFIG_SND_SOC_RT1015": "m", "CONFIG_SND_SOC_RT1015P": "m", "CONFIG_SND_SOC_RT1019": "m", "CONFIG_SND_SOC_RT1308": "m", "CONFIG_SND_SOC_RT1308_SDW": "m", "CONFIG_SND_SOC_RT1316_SDW": "m", "CONFIG_SND_SOC_RT1318_SDW": "m", "CONFIG_SND_SOC_RT5514": "m", "CONFIG_SND_SOC_RT5514_SPI": "m", "CONFIG_SND_SOC_RT5514_SPI_BUILTIN": "not set", "CONFIG_SND_SOC_RT5616": "not set", "CONFIG_SND_SOC_RT5631": "not set", "CONFIG_SND_SOC_RT5640": "m", "CONFIG_SND_SOC_RT5645": "m", "CONFIG_SND_SOC_RT5651": "m", "CONFIG_SND_SOC_RT5659": "m", "CONFIG_SND_SOC_RT5660": "m", "CONFIG_SND_SOC_RT5663": "m", "CONFIG_SND_SOC_RT5670": "m", "CONFIG_SND_SOC_RT5677": "m", "CONFIG_SND_SOC_RT5677_SPI": "m", "CONFIG_SND_SOC_RT5682": "m", "CONFIG_SND_SOC_RT5682_I2C": "m", "CONFIG_SND_SOC_RT5682_SDW": "m", "CONFIG_SND_SOC_RT5682S": "m", "CONFIG_SND_SOC_RT700": "m", "CONFIG_SND_SOC_RT700_SDW": "m", "CONFIG_SND_SOC_RT711": "m", "CONFIG_SND_SOC_RT711_SDW": "m", "CONFIG_SND_SOC_RT711_SDCA_SDW": "m", "CONFIG_SND_SOC_RT712_SDCA_SDW": "m", "CONFIG_SND_SOC_RT712_SDCA_DMIC_SDW": "m", "CONFIG_SND_SOC_RT722_SDCA_SDW": "m", "CONFIG_SND_SOC_RT715": "m", "CONFIG_SND_SOC_RT715_SDW": "m", "CONFIG_SND_SOC_RT715_SDCA_SDW": "m", "CONFIG_SND_SOC_RT9120": "m", "CONFIG_SND_SOC_SDW_MOCKUP": "m", "CONFIG_SND_SOC_SGTL5000": "not set", "CONFIG_SND_SOC_SIMPLE_AMPLIFIER": "not set", "CONFIG_SND_SOC_SIMPLE_MUX": "not set", "CONFIG_SND_SOC_SMA1303": "not set", "CONFIG_SND_SOC_SPDIF": "not set", "CONFIG_SND_SOC_SRC4XXX_I2C": "not set", "CONFIG_SND_SOC_SSM2305": "not set", "CONFIG_SND_SOC_SSM2518": "not set", "CONFIG_SND_SOC_SSM2602_SPI": "not set", "CONFIG_SND_SOC_SSM2602_I2C": "not set", "CONFIG_SND_SOC_SSM4567": "m", "CONFIG_SND_SOC_STA32X": "not set", "CONFIG_SND_SOC_STA350": "not set", "CONFIG_SND_SOC_STI_SAS": "not set", "CONFIG_SND_SOC_TAS2552": "not set", "CONFIG_SND_SOC_TAS2562": "not set", "CONFIG_SND_SOC_TAS2764": "not set", "CONFIG_SND_SOC_TAS2770": "not set", "CONFIG_SND_SOC_TAS2780": "not set", "CONFIG_SND_SOC_TAS2781_COMLIB": "m", "CONFIG_SND_SOC_TAS2781_FMWLIB": "m", "CONFIG_SND_SOC_TAS2781_I2C": "m", "CONFIG_SND_SOC_TAS5086": "not set", "CONFIG_SND_SOC_TAS571X": "not set", "CONFIG_SND_SOC_TAS5720": "m", "CONFIG_SND_SOC_TAS5805M": "not set", "CONFIG_SND_SOC_TAS6424": "not set", "CONFIG_SND_SOC_TDA7419": "m", "CONFIG_SND_SOC_TFA9879": "not set", "CONFIG_SND_SOC_TFA989X": "not set", "CONFIG_SND_SOC_TLV320ADC3XXX": "not set", "CONFIG_SND_SOC_TLV320AIC23_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC23_SPI": "not set", "CONFIG_SND_SOC_TLV320AIC31XX": "not set", "CONFIG_SND_SOC_TLV320AIC32X4_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC32X4_SPI": "not set", "CONFIG_SND_SOC_TLV320AIC3X_I2C": "not set", "CONFIG_SND_SOC_TLV320AIC3X_SPI": "not set", "CONFIG_SND_SOC_TLV320ADCX140": "not set", "CONFIG_SND_SOC_TS3A227E": "m", "CONFIG_SND_SOC_TSCS42XX": "not set", "CONFIG_SND_SOC_TSCS454": "not set", "CONFIG_SND_SOC_UDA1334": "not set", "CONFIG_SND_SOC_WCD938X_SDW": "not set", "CONFIG_SND_SOC_WM8510": "not set", "CONFIG_SND_SOC_WM8523": "not set", "CONFIG_SND_SOC_WM8524": "not set", "CONFIG_SND_SOC_WM8580": "not set", "CONFIG_SND_SOC_WM8711": "not set", "CONFIG_SND_SOC_WM8728": "not set", "CONFIG_SND_SOC_WM8731_I2C": "not set", "CONFIG_SND_SOC_WM8731_SPI": "not set", "CONFIG_SND_SOC_WM8737": "not set", "CONFIG_SND_SOC_WM8741": "not set", "CONFIG_SND_SOC_WM8750": "not set", "CONFIG_SND_SOC_WM8753": "not set", "CONFIG_SND_SOC_WM8770": "not set", "CONFIG_SND_SOC_WM8776": "not set", "CONFIG_SND_SOC_WM8782": "not set", "CONFIG_SND_SOC_WM8804": "m", "CONFIG_SND_SOC_WM8804_I2C": "m", "CONFIG_SND_SOC_WM8804_SPI": "not set", "CONFIG_SND_SOC_WM8903": "not set", "CONFIG_SND_SOC_WM8904": "not set", "CONFIG_SND_SOC_WM8940": "not set", "CONFIG_SND_SOC_WM8960": "not set", "CONFIG_SND_SOC_WM8961": "not set", "CONFIG_SND_SOC_WM8962": "not set", "CONFIG_SND_SOC_WM8974": "not set", "CONFIG_SND_SOC_WM8978": "not set", "CONFIG_SND_SOC_WM8985": "not set", "CONFIG_SND_SOC_WSA881X": "not set", "CONFIG_SND_SOC_WSA883X": "not set", "CONFIG_SND_SOC_WSA884X": "not set", "CONFIG_SND_SOC_ZL38060": "not set", "CONFIG_SND_SOC_MAX9759": "not set", "CONFIG_SND_SOC_MT6351": "not set", "CONFIG_SND_SOC_MT6358": "not set", "CONFIG_SND_SOC_MT6660": "not set", "CONFIG_SND_SOC_NAU8315": "m", "CONFIG_SND_SOC_NAU8540": "not set", "CONFIG_SND_SOC_NAU8810": "m", "CONFIG_SND_SOC_NAU8821": "m", "CONFIG_SND_SOC_NAU8822": "not set", "CONFIG_SND_SOC_NAU8824": "m", "CONFIG_SND_SOC_NAU8825": "m", "CONFIG_SND_SOC_TPA6130A2": "not set", "CONFIG_SND_SOC_LPASS_WSA_MACRO": "not set", "CONFIG_SND_SOC_LPASS_VA_MACRO": "not set", "CONFIG_SND_SOC_LPASS_RX_MACRO": "not set", "CONFIG_SND_SOC_LPASS_TX_MACRO": "not set", "CONFIG_SND_SIMPLE_CARD": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "m", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_XEN_FRONTEND": "m", "CONFIG_SND_VIRTIO": "m", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "y", "CONFIG_HIDRAW": "y", "CONFIG_UHID": "m", "CONFIG_HID_GENERIC": "m", "CONFIG_HID_A4TECH": "m", "CONFIG_HID_ACCUTOUCH": "m", "CONFIG_HID_ACRUX": "m", "CONFIG_HID_ACRUX_FF": "y", "CONFIG_HID_APPLE": "m", "CONFIG_HID_APPLEIR": "m", "CONFIG_HID_ASUS": "m", "CONFIG_HID_AUREAL": "m", "CONFIG_HID_BELKIN": "m", "CONFIG_HID_BETOP_FF": "m", "CONFIG_HID_BIGBEN_FF": "m", "CONFIG_HID_CHERRY": "m", "CONFIG_HID_CHICONY": "m", "CONFIG_HID_CORSAIR": "m", "CONFIG_HID_COUGAR": "m", "CONFIG_HID_MACALLY": "m", "CONFIG_HID_PRODIKEYS": "m", "CONFIG_HID_CMEDIA": "m", "CONFIG_HID_CP2112": "m", "CONFIG_HID_CREATIVE_SB0540": "m", "CONFIG_HID_CYPRESS": "m", "CONFIG_HID_DRAGONRISE": "m", "CONFIG_DRAGONRISE_FF": "y", "CONFIG_HID_EMS_FF": "m", "CONFIG_HID_ELAN": "m", "CONFIG_HID_ELECOM": "m", "CONFIG_HID_ELO": "m", "CONFIG_HID_EVISION": "m", "CONFIG_HID_EZKEY": "m", "CONFIG_HID_FT260": "m", "CONFIG_HID_GEMBIRD": "m", "CONFIG_HID_GFRM": "m", "CONFIG_HID_GLORIOUS": "m", "CONFIG_HID_HOLTEK": "m", "CONFIG_HOLTEK_FF": "y", "CONFIG_HID_VIVALDI_COMMON": "m", "CONFIG_HID_GOOGLE_HAMMER": "m", "CONFIG_HID_VIVALDI": "m", "CONFIG_HID_GT683R": "m", "CONFIG_HID_KEYTOUCH": "m", "CONFIG_HID_KYE": "m", "CONFIG_HID_UCLOGIC": "m", "CONFIG_HID_WALTOP": "m", "CONFIG_HID_VIEWSONIC": "m", "CONFIG_HID_VRC2": "m", "CONFIG_HID_XIAOMI": "m", "CONFIG_HID_GYRATION": "m", "CONFIG_HID_ICADE": "m", "CONFIG_HID_ITE": "m", "CONFIG_HID_JABRA": "m", "CONFIG_HID_TWINHAN": "m", "CONFIG_HID_KENSINGTON": "m", "CONFIG_HID_LCPOWER": "m", "CONFIG_HID_LED": "m", "CONFIG_HID_LENOVO": "m", "CONFIG_HID_LETSKETCH": "m", "CONFIG_HID_LOGITECH": "m", "CONFIG_HID_LOGITECH_DJ": "m", "CONFIG_HID_LOGITECH_HIDPP": "m", "CONFIG_LOGITECH_FF": "y", "CONFIG_LOGIRUMBLEPAD2_FF": "y", "CONFIG_LOGIG940_FF": "y", "CONFIG_LOGIWHEELS_FF": "y", "CONFIG_HID_MAGICMOUSE": "m", "CONFIG_HID_MALTRON": "m", "CONFIG_HID_MAYFLASH": "m", "CONFIG_HID_MEGAWORLD_FF": "m", "CONFIG_HID_REDRAGON": "m", "CONFIG_HID_MICROSOFT": "m", "CONFIG_HID_MONTEREY": "m", "CONFIG_HID_MULTITOUCH": "m", "CONFIG_HID_NINTENDO": "m", "CONFIG_NINTENDO_FF": "y", "CONFIG_HID_NTI": "m", "CONFIG_HID_NTRIG": "m", "CONFIG_HID_ORTEK": "m", "CONFIG_HID_PANTHERLORD": "m", "CONFIG_PANTHERLORD_FF": "y", "CONFIG_HID_PENMOUNT": "m", "CONFIG_HID_PETALYNX": "m", "CONFIG_HID_PICOLCD": "m", "CONFIG_HID_PICOLCD_FB": "y", "CONFIG_HID_PICOLCD_BACKLIGHT": "y", "CONFIG_HID_PICOLCD_LCD": "y", "CONFIG_HID_PICOLCD_LEDS": "y", "CONFIG_HID_PICOLCD_CIR": "y", "CONFIG_HID_PLANTRONICS": "m", "CONFIG_HID_PLAYSTATION": "m", "CONFIG_PLAYSTATION_FF": "y", "CONFIG_HID_PXRC": "m", "CONFIG_HID_RAZER": "m", "CONFIG_HID_PRIMAX": "m", "CONFIG_HID_RETRODE": "m", "CONFIG_HID_ROCCAT": "m", "CONFIG_HID_SAITEK": "m", "CONFIG_HID_SAMSUNG": "m", "CONFIG_HID_SEMITEK": "m", "CONFIG_HID_SIGMAMICRO": "m", "CONFIG_HID_SONY": "m", "CONFIG_SONY_FF": "y", "CONFIG_HID_SPEEDLINK": "m", "CONFIG_HID_STEAM": "m", "CONFIG_STEAM_FF": "y", "CONFIG_HID_STEELSERIES": "m", "CONFIG_HID_SUNPLUS": "m", "CONFIG_HID_RMI": "m", "CONFIG_HID_GREENASIA": "m", "CONFIG_GREENASIA_FF": "y", "CONFIG_HID_HYPERV_MOUSE": "m", "CONFIG_HID_SMARTJOYPLUS": "m", "CONFIG_SMARTJOYPLUS_FF": "y", "CONFIG_HID_TIVO": "m", "CONFIG_HID_TOPSEED": "m", "CONFIG_HID_TOPRE": "m", "CONFIG_HID_THINGM": "m", "CONFIG_HID_THRUSTMASTER": "m", "CONFIG_THRUSTMASTER_FF": "y", "CONFIG_HID_UDRAW_PS3": "m", "CONFIG_HID_U2FZERO": "m", "CONFIG_HID_WACOM": "m", "CONFIG_HID_WIIMOTE": "m", "CONFIG_HID_XINMO": "m", "CONFIG_HID_ZEROPLUS": "m", "CONFIG_ZEROPLUS_FF": "y", "CONFIG_HID_ZYDACRON": "m", "CONFIG_HID_SENSOR_HUB": "m", "CONFIG_HID_SENSOR_CUSTOM_SENSOR": "m", "CONFIG_HID_ALPS": "m", "CONFIG_HID_MCP2221": "m", "CONFIG_HID_BPF": "y", "CONFIG_USB_HID": "m", "CONFIG_HID_PID": "y", "CONFIG_USB_HIDDEV": "y", "CONFIG_USB_KBD": "not set", "CONFIG_USB_MOUSE": "not set", "CONFIG_I2C_HID": "m", "CONFIG_I2C_HID_ACPI": "m", "CONFIG_I2C_HID_OF": "m", "CONFIG_I2C_HID_CORE": "m", "CONFIG_INTEL_ISH_HID": "m", "CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER": "m", "CONFIG_AMD_SFH_HID": "m", "CONFIG_SURFACE_HID": "m", "CONFIG_SURFACE_KBD": "m", "CONFIG_SURFACE_HID_CORE": "m", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "y", "CONFIG_USB_ULPI_BUS": "m", "CONFIG_USB_CONN_GPIO": "m", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "m", "CONFIG_USB_PCI": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "y", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "y", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB": "not set", "CONFIG_USB_OTG_FSM": "m", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "m", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_MON": "m", "CONFIG_USB_C67X00_HCD": "m", "CONFIG_USB_XHCI_HCD": "m", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "m", "CONFIG_USB_XHCI_PCI_RENESAS": "m", "CONFIG_USB_XHCI_PLATFORM": "m", "CONFIG_USB_EHCI_HCD": "m", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "m", "CONFIG_USB_EHCI_FSL": "m", "CONFIG_USB_EHCI_HCD_PLATFORM": "m", "CONFIG_USB_OXU210HP_HCD": "m", "CONFIG_USB_ISP116X_HCD": "m", "CONFIG_USB_MAX3421_HCD": "not set", "CONFIG_USB_OHCI_HCD": "m", "CONFIG_USB_OHCI_HCD_PCI": "m", "CONFIG_USB_OHCI_HCD_SSB": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "m", "CONFIG_USB_UHCI_HCD": "m", "CONFIG_USB_SL811_HCD": "m", "CONFIG_USB_SL811_HCD_ISO": "not set", "CONFIG_USB_R8A66597_HCD": "m", "CONFIG_USB_HCD_BCMA": "m", "CONFIG_USB_HCD_SSB": "m", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_XEN_HCD": "m", "CONFIG_USB_ACM": "m", "CONFIG_USB_PRINTER": "m", "CONFIG_USB_WDM": "m", "CONFIG_USB_TMC": "m", "CONFIG_USB_STORAGE": "m", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "m", "CONFIG_REALTEK_AUTOPM": "y", "CONFIG_USB_STORAGE_DATAFAB": "m", "CONFIG_USB_STORAGE_FREECOM": "m", "CONFIG_USB_STORAGE_ISD200": "m", "CONFIG_USB_STORAGE_USBAT": "m", "CONFIG_USB_STORAGE_SDDR09": "m", "CONFIG_USB_STORAGE_SDDR55": "m", "CONFIG_USB_STORAGE_JUMPSHOT": "m", "CONFIG_USB_STORAGE_ALAUDA": "m", "CONFIG_USB_STORAGE_ONETOUCH": "m", "CONFIG_USB_STORAGE_KARMA": "m", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "m", "CONFIG_USB_STORAGE_ENE_UB6250": "m", "CONFIG_USB_UAS": "m", "CONFIG_USB_MDC800": "m", "CONFIG_USB_MICROTEK": "m", "CONFIG_USBIP_CORE": "m", "CONFIG_USBIP_VHCI_HCD": "m", "CONFIG_USBIP_VHCI_HC_PORTS": "8", "CONFIG_USBIP_VHCI_NR_HCS": "1", "CONFIG_USBIP_HOST": "m", "CONFIG_USBIP_VUDC": "m", "CONFIG_USBIP_DEBUG": "not set", "CONFIG_USB_CDNS_SUPPORT": "m", "CONFIG_USB_CDNS_HOST": "y", "CONFIG_USB_CDNS3": "m", "CONFIG_USB_CDNS3_GADGET": "not set", "CONFIG_USB_CDNS3_HOST": "y", "CONFIG_USB_CDNS3_PCI_WRAP": "m", "CONFIG_USB_CDNSP_PCI": "m", "CONFIG_USB_CDNSP_GADGET": "y", "CONFIG_USB_CDNSP_HOST": "y", "CONFIG_USB_MUSB_HDRC": "m", "CONFIG_USB_MUSB_HOST": "y", "CONFIG_USB_MUSB_GADGET": "not set", "CONFIG_USB_MUSB_DUAL_ROLE": "not set", "CONFIG_MUSB_PIO_ONLY": "y", "CONFIG_USB_DWC3": "m", "CONFIG_USB_DWC3_ULPI": "y", "CONFIG_USB_DWC3_HOST": "not set", "CONFIG_USB_DWC3_GADGET": "not set", "CONFIG_USB_DWC3_DUAL_ROLE": "y", "CONFIG_USB_DWC3_PCI": "m", "CONFIG_USB_DWC3_HAPS": "m", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "m", "CONFIG_USB_ISP1760_HCD": "y", "CONFIG_USB_ISP1760_HOST_ROLE": "y", "CONFIG_USB_ISP1760_GADGET_ROLE": "not set", "CONFIG_USB_ISP1760_DUAL_ROLE": "not set", "CONFIG_USB_SERIAL": "m", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "m", "CONFIG_USB_SERIAL_AIRCABLE": "m", "CONFIG_USB_SERIAL_ARK3116": "m", "CONFIG_USB_SERIAL_BELKIN": "m", "CONFIG_USB_SERIAL_CH341": "m", "CONFIG_USB_SERIAL_WHITEHEAT": "m", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "m", "CONFIG_USB_SERIAL_CP210X": "m", "CONFIG_USB_SERIAL_CYPRESS_M8": "m", "CONFIG_USB_SERIAL_EMPEG": "m", "CONFIG_USB_SERIAL_FTDI_SIO": "m", "CONFIG_USB_SERIAL_VISOR": "m", "CONFIG_USB_SERIAL_IPAQ": "m", "CONFIG_USB_SERIAL_IR": "m", "CONFIG_USB_SERIAL_EDGEPORT": "m", "CONFIG_USB_SERIAL_EDGEPORT_TI": "m", "CONFIG_USB_SERIAL_F81232": "m", "CONFIG_USB_SERIAL_F8153X": "m", "CONFIG_USB_SERIAL_GARMIN": "m", "CONFIG_USB_SERIAL_IPW": "m", "CONFIG_USB_SERIAL_IUU": "m", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "m", "CONFIG_USB_SERIAL_KEYSPAN": "m", "CONFIG_USB_SERIAL_KLSI": "m", "CONFIG_USB_SERIAL_KOBIL_SCT": "m", "CONFIG_USB_SERIAL_MCT_U232": "m", "CONFIG_USB_SERIAL_METRO": "m", "CONFIG_USB_SERIAL_MOS7720": "m", "CONFIG_USB_SERIAL_MOS7715_PARPORT": "y", "CONFIG_USB_SERIAL_MOS7840": "m", "CONFIG_USB_SERIAL_MXUPORT": "m", "CONFIG_USB_SERIAL_NAVMAN": "m", "CONFIG_USB_SERIAL_PL2303": "m", "CONFIG_USB_SERIAL_OTI6858": "m", "CONFIG_USB_SERIAL_QCAUX": "m", "CONFIG_USB_SERIAL_QUALCOMM": "m", "CONFIG_USB_SERIAL_SPCP8X5": "m", "CONFIG_USB_SERIAL_SAFE": "m", "CONFIG_USB_SERIAL_SAFE_PADDED": "y", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "m", "CONFIG_USB_SERIAL_SYMBOL": "m", "CONFIG_USB_SERIAL_TI": "m", "CONFIG_USB_SERIAL_CYBERJACK": "m", "CONFIG_USB_SERIAL_WWAN": "m", "CONFIG_USB_SERIAL_OPTION": "m", "CONFIG_USB_SERIAL_OMNINET": "m", "CONFIG_USB_SERIAL_OPTICON": "m", "CONFIG_USB_SERIAL_XSENS_MT": "m", "CONFIG_USB_SERIAL_WISHBONE": "m", "CONFIG_USB_SERIAL_SSU100": "m", "CONFIG_USB_SERIAL_QT2": "m", "CONFIG_USB_SERIAL_UPD78F0730": "m", "CONFIG_USB_SERIAL_XR": "m", "CONFIG_USB_SERIAL_DEBUG": "m", "CONFIG_USB_USS720": "m", "CONFIG_USB_EMI62": "m", "CONFIG_USB_EMI26": "m", "CONFIG_USB_ADUTUX": "m", "CONFIG_USB_SEVSEG": "m", "CONFIG_USB_LEGOTOWER": "m", "CONFIG_USB_LCD": "m", "CONFIG_USB_CYPRESS_CY7C63": "m", "CONFIG_USB_CYTHERM": "m", "CONFIG_USB_IDMOUSE": "m", "CONFIG_USB_APPLEDISPLAY": "m", "CONFIG_APPLE_MFI_FASTCHARGE": "m", "CONFIG_USB_SISUSBVGA": "m", "CONFIG_USB_LD": "m", "CONFIG_USB_TRANCEVIBRATOR": "m", "CONFIG_USB_IOWARRIOR": "m", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "m", "CONFIG_USB_ISIGHTFW": "m", "CONFIG_USB_YUREX": "m", "CONFIG_USB_EZUSB_FX2": "m", "CONFIG_USB_HUB_USB251XB": "m", "CONFIG_USB_HSIC_USB3503": "m", "CONFIG_USB_HSIC_USB4604": "m", "CONFIG_USB_LINK_LAYER_TEST": "m", "CONFIG_USB_CHAOSKEY": "m", "CONFIG_USB_ATM": "m", "CONFIG_USB_SPEEDTOUCH": "m", "CONFIG_USB_CXACRU": "m", "CONFIG_USB_UEAGLEATM": "m", "CONFIG_USB_XUSBATM": "m", "CONFIG_USB_PHY": "y", "CONFIG_NOP_USB_XCEIV": "m", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "m", "CONFIG_USB_GADGET": "y", "CONFIG_USB_GADGET_DEBUG": "not set", "CONFIG_USB_GADGET_DEBUG_FILES": "not set", "CONFIG_USB_GADGET_DEBUG_FS": "not set", "CONFIG_USB_GADGET_VBUS_DRAW": "2", "CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS": "2", "CONFIG_U_SERIAL_CONSOLE": "not set", "CONFIG_USB_GR_UDC": "not set", "CONFIG_USB_R8A66597": "not set", "CONFIG_USB_PXA27X": "not set", "CONFIG_USB_MV_UDC": "not set", "CONFIG_USB_MV_U3D": "not set", "CONFIG_USB_M66592": "not set", "CONFIG_USB_BDC_UDC": "not set", "CONFIG_USB_AMD5536UDC": "not set", "CONFIG_USB_NET2272": "not set", "CONFIG_USB_NET2280": "not set", "CONFIG_USB_GOKU": "not set", "CONFIG_USB_EG20T": "m", "CONFIG_USB_MAX3420_UDC": "not set", "CONFIG_USB_LIBCOMPOSITE": "m", "CONFIG_USB_F_ACM": "m", "CONFIG_USB_F_SS_LB": "m", "CONFIG_USB_U_SERIAL": "m", "CONFIG_USB_U_ETHER": "m", "CONFIG_USB_U_AUDIO": "m", "CONFIG_USB_F_SERIAL": "m", "CONFIG_USB_F_OBEX": "m", "CONFIG_USB_F_NCM": "m", "CONFIG_USB_F_ECM": "m", "CONFIG_USB_F_PHONET": "m", "CONFIG_USB_F_EEM": "m", "CONFIG_USB_F_SUBSET": "m", "CONFIG_USB_F_RNDIS": "m", "CONFIG_USB_F_MASS_STORAGE": "m", "CONFIG_USB_F_FS": "m", "CONFIG_USB_F_UAC1": "m", "CONFIG_USB_F_UAC2": "m", "CONFIG_USB_F_UVC": "m", "CONFIG_USB_F_MIDI": "m", "CONFIG_USB_F_HID": "m", "CONFIG_USB_F_PRINTER": "m", "CONFIG_USB_F_TCM": "m", "CONFIG_USB_CONFIGFS": "m", "CONFIG_USB_CONFIGFS_SERIAL": "y", "CONFIG_USB_CONFIGFS_ACM": "y", "CONFIG_USB_CONFIGFS_OBEX": "y", "CONFIG_USB_CONFIGFS_NCM": "y", "CONFIG_USB_CONFIGFS_ECM": "y", "CONFIG_USB_CONFIGFS_ECM_SUBSET": "y", "CONFIG_USB_CONFIGFS_RNDIS": "y", "CONFIG_USB_CONFIGFS_EEM": "y", "CONFIG_USB_CONFIGFS_PHONET": "y", "CONFIG_USB_CONFIGFS_MASS_STORAGE": "y", "CONFIG_USB_CONFIGFS_F_LB_SS": "y", "CONFIG_USB_CONFIGFS_F_FS": "y", "CONFIG_USB_CONFIGFS_F_UAC1": "y", "CONFIG_USB_CONFIGFS_F_UAC1_LEGACY": "not set", "CONFIG_USB_CONFIGFS_F_UAC2": "y", "CONFIG_USB_CONFIGFS_F_MIDI": "y", "CONFIG_USB_CONFIGFS_F_HID": "y", "CONFIG_USB_CONFIGFS_F_UVC": "y", "CONFIG_USB_CONFIGFS_F_PRINTER": "y", "CONFIG_USB_CONFIGFS_F_TCM": "y", "CONFIG_USB_ZERO": "m", "CONFIG_USB_ZERO_HNPTEST": "y", "CONFIG_USB_AUDIO": "m", "CONFIG_GADGET_UAC1": "y", "CONFIG_GADGET_UAC1_LEGACY": "not set", "CONFIG_USB_ETH": "m", "CONFIG_USB_ETH_RNDIS": "y", "CONFIG_USB_ETH_EEM": "y", "CONFIG_USB_G_NCM": "m", "CONFIG_USB_GADGETFS": "m", "CONFIG_USB_FUNCTIONFS": "m", "CONFIG_USB_FUNCTIONFS_ETH": "y", "CONFIG_USB_FUNCTIONFS_RNDIS": "y", "CONFIG_USB_FUNCTIONFS_GENERIC": "y", "CONFIG_USB_MASS_STORAGE": "m", "CONFIG_USB_GADGET_TARGET": "m", "CONFIG_USB_G_SERIAL": "m", "CONFIG_USB_MIDI_GADGET": "m", "CONFIG_USB_G_PRINTER": "m", "CONFIG_USB_CDC_COMPOSITE": "m", "CONFIG_USB_G_NOKIA": "m", "CONFIG_USB_G_ACM_MS": "m", "CONFIG_USB_G_MULTI": "m", "CONFIG_USB_G_MULTI_RNDIS": "y", "CONFIG_USB_G_MULTI_CDC": "y", "CONFIG_USB_G_HID": "m", "CONFIG_USB_G_DBGP": "m", "CONFIG_USB_G_DBGP_PRINTK": "y", "CONFIG_USB_G_DBGP_SERIAL": "not set", "CONFIG_USB_G_WEBCAM": "m", "CONFIG_USB_RAW_GADGET": "m", "CONFIG_TYPEC": "m", "CONFIG_TYPEC_TCPM": "m", "CONFIG_TYPEC_TCPCI": "m", "CONFIG_TYPEC_RT1711H": "m", "CONFIG_TYPEC_TCPCI_MAXIM": "m", "CONFIG_TYPEC_FUSB302": "m", "CONFIG_TYPEC_WCOVE": "m", "CONFIG_TYPEC_UCSI": "m", "CONFIG_UCSI_CCG": "m", "CONFIG_UCSI_ACPI": "m", "CONFIG_UCSI_STM32G0": "m", "CONFIG_TYPEC_TPS6598X": "m", "CONFIG_TYPEC_ANX7411": "m", "CONFIG_TYPEC_RT1719": "m", "CONFIG_TYPEC_HD3SS3220": "m", "CONFIG_TYPEC_STUSB160X": "m", "CONFIG_TYPEC_WUSB3801": "m", "CONFIG_TYPEC_MUX_FSA4480": "m", "CONFIG_TYPEC_MUX_GPIO_SBU": "m", "CONFIG_TYPEC_MUX_PI3USB30532": "m", "CONFIG_TYPEC_MUX_INTEL_PMC": "m", "CONFIG_TYPEC_DP_ALTMODE": "m", "CONFIG_TYPEC_NVIDIA_ALTMODE": "m", "CONFIG_USB_ROLE_SWITCH": "m", "CONFIG_USB_ROLES_INTEL_XHCI": "m", "CONFIG_MMC": "m", "CONFIG_MMC_BLOCK": "m", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "m", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_CRYPTO": "y", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "m", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "m", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "m", "CONFIG_MMC_SDHCI_PLTFM": "m", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "m", "CONFIG_MMC_ALCOR": "m", "CONFIG_MMC_TIFM_SD": "m", "CONFIG_MMC_SPI": "m", "CONFIG_MMC_CB710": "m", "CONFIG_MMC_VIA_SDMMC": "m", "CONFIG_MMC_VUB300": "m", "CONFIG_MMC_USHC": "m", "CONFIG_MMC_USDHI6ROL0": "m", "CONFIG_MMC_REALTEK_PCI": "m", "CONFIG_MMC_REALTEK_USB": "m", "CONFIG_MMC_CQHCI": "m", "CONFIG_MMC_HSQ": "m", "CONFIG_MMC_TOSHIBA_PCI": "m", "CONFIG_MMC_MTK": "m", "CONFIG_MMC_SDHCI_XENON": "m", "CONFIG_SCSI_UFSHCD": "m", "CONFIG_SCSI_UFS_BSG": "y", "CONFIG_SCSI_UFS_CRYPTO": "y", "CONFIG_SCSI_UFS_HPB": "y", "CONFIG_SCSI_UFS_FAULT_INJECTION": "y", "CONFIG_SCSI_UFS_HWMON": "y", "CONFIG_SCSI_UFSHCD_PCI": "m", "CONFIG_SCSI_UFS_DWC_TC_PCI": "not set", "CONFIG_SCSI_UFSHCD_PLATFORM": "m", "CONFIG_SCSI_UFS_CDNS_PLATFORM": "m", "CONFIG_MEMSTICK": "m", "CONFIG_MEMSTICK_DEBUG": "not set", "CONFIG_MEMSTICK_UNSAFE_RESUME": "not set", "CONFIG_MSPRO_BLOCK": "m", "CONFIG_MS_BLOCK": "m", "CONFIG_MEMSTICK_TIFM_MS": "m", "CONFIG_MEMSTICK_JMICRON_38X": "m", "CONFIG_MEMSTICK_R592": "m", "CONFIG_MEMSTICK_REALTEK_PCI": "m", "CONFIG_MEMSTICK_REALTEK_USB": "m", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "m", "CONFIG_LEDS_CLASS_MULTICOLOR": "m", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "y", "CONFIG_LEDS_APU": "m", "CONFIG_LEDS_LM3530": "m", "CONFIG_LEDS_LM3532": "m", "CONFIG_LEDS_LM3533": "m", "CONFIG_LEDS_LM3642": "m", "CONFIG_LEDS_PCA9532": "m", "CONFIG_LEDS_PCA9532_GPIO": "y", "CONFIG_LEDS_GPIO": "m", "CONFIG_LEDS_LP3944": "m", "CONFIG_LEDS_LP3952": "m", "CONFIG_LEDS_LP50XX": "m", "CONFIG_LEDS_PCA955X": "m", "CONFIG_LEDS_PCA955X_GPIO": "y", "CONFIG_LEDS_PCA963X": "m", "CONFIG_LEDS_DAC124S085": "not set", "CONFIG_LEDS_PWM": "m", "CONFIG_LEDS_REGULATOR": "m", "CONFIG_LEDS_BD2606MVV": "m", "CONFIG_LEDS_BD2802": "m", "CONFIG_LEDS_INTEL_SS4200": "m", "CONFIG_LEDS_LT3593": "m", "CONFIG_LEDS_TCA6507": "m", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "m", "CONFIG_LEDS_IS31FL319X": "m", "CONFIG_LEDS_BLINKM": "m", "CONFIG_LEDS_MLXCPLD": "m", "CONFIG_LEDS_MLXREG": "m", "CONFIG_LEDS_USER": "m", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TI_LMU_COMMON": "m", "CONFIG_LEDS_LM36274": "m", "CONFIG_LEDS_AS3645A": "not set", "CONFIG_LEDS_LM3601X": "m", "CONFIG_LEDS_RT8515": "m", "CONFIG_LEDS_SGM3140": "m", "CONFIG_LEDS_PWM_MULTICOLOR": "m", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "m", "CONFIG_LEDS_TRIGGER_ONESHOT": "m", "CONFIG_LEDS_TRIGGER_DISK": "y", "CONFIG_LEDS_TRIGGER_MTD": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "m", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "m", "CONFIG_LEDS_TRIGGER_CPU": "y", "CONFIG_LEDS_TRIGGER_ACTIVITY": "m", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "m", "CONFIG_LEDS_TRIGGER_TRANSIENT": "m", "CONFIG_LEDS_TRIGGER_CAMERA": "m", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "m", "CONFIG_LEDS_TRIGGER_PATTERN": "m", "CONFIG_LEDS_TRIGGER_AUDIO": "m", "CONFIG_LEDS_TRIGGER_TTY": "m", "CONFIG_LEDS_SIEMENS_SIMATIC_IPC": "m", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "m", "CONFIG_INFINIBAND_USER_MAD": "m", "CONFIG_INFINIBAND_USER_ACCESS": "m", "CONFIG_INFINIBAND_USER_MEM": "y", "CONFIG_INFINIBAND_ON_DEMAND_PAGING": "y", "CONFIG_INFINIBAND_ADDR_TRANS": "y", "CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS": "y", "CONFIG_INFINIBAND_VIRT_DMA": "y", "CONFIG_INFINIBAND_BNXT_RE": "m", "CONFIG_INFINIBAND_CXGB4": "m", "CONFIG_INFINIBAND_EFA": "m", "CONFIG_INFINIBAND_ERDMA": "m", "CONFIG_INFINIBAND_HFI1": "m", "CONFIG_HFI1_DEBUG_SDMA_ORDER": "not set", "CONFIG_SDMA_VERBOSITY": "not set", "CONFIG_INFINIBAND_IRDMA": "m", "CONFIG_MANA_INFINIBAND": "m", "CONFIG_MLX4_INFINIBAND": "m", "CONFIG_MLX5_INFINIBAND": "m", "CONFIG_INFINIBAND_MTHCA": "m", "CONFIG_INFINIBAND_MTHCA_DEBUG": "y", "CONFIG_INFINIBAND_OCRDMA": "m", "CONFIG_INFINIBAND_QEDR": "m", "CONFIG_INFINIBAND_QIB": "m", "CONFIG_INFINIBAND_QIB_DCA": "y", "CONFIG_INFINIBAND_USNIC": "m", "CONFIG_INFINIBAND_VMWARE_PVRDMA": "m", "CONFIG_INFINIBAND_RDMAVT": "m", "CONFIG_RDMA_RXE": "m", "CONFIG_RDMA_SIW": "m", "CONFIG_INFINIBAND_IPOIB": "m", "CONFIG_INFINIBAND_IPOIB_CM": "y", "CONFIG_INFINIBAND_IPOIB_DEBUG": "y", "CONFIG_INFINIBAND_IPOIB_DEBUG_DATA": "not set", "CONFIG_INFINIBAND_SRP": "m", "CONFIG_INFINIBAND_SRPT": "m", "CONFIG_INFINIBAND_ISER": "m", "CONFIG_INFINIBAND_ISERT": "m", "CONFIG_INFINIBAND_RTRS": "m", "CONFIG_INFINIBAND_RTRS_CLIENT": "m", "CONFIG_INFINIBAND_RTRS_SERVER": "m", "CONFIG_INFINIBAND_OPA_VNIC": "m", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_EDAC": "y", "CONFIG_EDAC_LEGACY_SYSFS": "y", "CONFIG_EDAC_DEBUG": "not set", "CONFIG_EDAC_DECODE_MCE": "m", "CONFIG_EDAC_GHES": "y", "CONFIG_EDAC_AMD64": "m", "CONFIG_EDAC_E752X": "m", "CONFIG_EDAC_I82975X": "m", "CONFIG_EDAC_I3000": "m", "CONFIG_EDAC_I3200": "m", "CONFIG_EDAC_IE31200": "m", "CONFIG_EDAC_X38": "m", "CONFIG_EDAC_I5400": "m", "CONFIG_EDAC_I7CORE": "m", "CONFIG_EDAC_I5100": "m", "CONFIG_EDAC_I7300": "m", "CONFIG_EDAC_SBRIDGE": "m", "CONFIG_EDAC_SKX": "m", "CONFIG_EDAC_I10NM": "m", "CONFIG_EDAC_PND2": "m", "CONFIG_EDAC_IGEN6": "m", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "m", "CONFIG_RTC_DRV_ABEOZ9": "m", "CONFIG_RTC_DRV_ABX80X": "m", "CONFIG_RTC_DRV_DS1307": "m", "CONFIG_RTC_DRV_DS1307_CENTURY": "y", "CONFIG_RTC_DRV_DS1374": "m", "CONFIG_RTC_DRV_DS1374_WDT": "y", "CONFIG_RTC_DRV_DS1672": "m", "CONFIG_RTC_DRV_MAX6900": "m", "CONFIG_RTC_DRV_MAX8907": "m", "CONFIG_RTC_DRV_RS5C372": "m", "CONFIG_RTC_DRV_ISL1208": "m", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "m", "CONFIG_RTC_DRV_PCF8523": "m", "CONFIG_RTC_DRV_PCF85063": "m", "CONFIG_RTC_DRV_PCF85363": "m", "CONFIG_RTC_DRV_PCF8563": "m", "CONFIG_RTC_DRV_PCF8583": "m", "CONFIG_RTC_DRV_M41T80": "m", "CONFIG_RTC_DRV_M41T80_WDT": "y", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "m", "CONFIG_RTC_DRV_FM3130": "m", "CONFIG_RTC_DRV_RX8010": "m", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "m", "CONFIG_RTC_DRV_RV3032": "m", "CONFIG_RTC_DRV_RV8803": "m", "CONFIG_RTC_DRV_SD3078": "m", "CONFIG_RTC_DRV_M41T93": "not set", "CONFIG_RTC_DRV_M41T94": "not set", "CONFIG_RTC_DRV_DS1302": "not set", "CONFIG_RTC_DRV_DS1305": "not set", "CONFIG_RTC_DRV_DS1343": "not set", "CONFIG_RTC_DRV_DS1347": "not set", "CONFIG_RTC_DRV_DS1390": "not set", "CONFIG_RTC_DRV_MAX6916": "not set", "CONFIG_RTC_DRV_R9701": "not set", "CONFIG_RTC_DRV_RX4581": "not set", "CONFIG_RTC_DRV_RS5C348": "not set", "CONFIG_RTC_DRV_MAX6902": "not set", "CONFIG_RTC_DRV_PCF2123": "not set", "CONFIG_RTC_DRV_MCP795": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "m", "CONFIG_RTC_DRV_DS3232_HWMON": "y", "CONFIG_RTC_DRV_PCF2127": "m", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_DA9063": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_BQ4802": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_CROS_EC": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_HID_SENSOR_TIME": "not set", "CONFIG_RTC_DRV_GOLDFISH": "m", "CONFIG_RTC_DRV_WILCO_EC": "m", "CONFIG_DMADEVICES": "y", "CONFIG_DMADEVICES_DEBUG": "not set", "CONFIG_DMA_ENGINE": "y", "CONFIG_DMA_VIRTUAL_CHANNELS": "y", "CONFIG_DMA_ACPI": "y", "CONFIG_ALTERA_MSGDMA": "m", "CONFIG_INTEL_IDMA64": "m", "CONFIG_INTEL_IDXD_BUS": "m", "CONFIG_INTEL_IDXD": "m", "CONFIG_INTEL_IDXD_COMPAT": "not set", "CONFIG_INTEL_IDXD_SVM": "y", "CONFIG_INTEL_IDXD_PERFMON": "y", "CONFIG_INTEL_IOATDMA": "m", "CONFIG_PLX_DMA": "m", "CONFIG_XILINX_XDMA": "m", "CONFIG_AMD_PTDMA": "m", "CONFIG_QCOM_HIDMA_MGMT": "not set", "CONFIG_QCOM_HIDMA": "not set", "CONFIG_DW_DMAC_CORE": "y", "CONFIG_DW_DMAC": "m", "CONFIG_DW_DMAC_PCI": "y", "CONFIG_DW_EDMA": "m", "CONFIG_DW_EDMA_PCIE": "m", "CONFIG_HSU_DMA": "y", "CONFIG_SF_PDMA": "m", "CONFIG_TI_K3_PSIL": "not set", "CONFIG_INTEL_LDMA": "y", "CONFIG_ASYNC_TX_DMA": "y", "CONFIG_DMATEST": "not set", "CONFIG_DMA_ENGINE_RAID": "y", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "y", "CONFIG_UDMABUF": "y", "CONFIG_DMABUF_MOVE_NOTIFY": "y", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "y", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_DMABUF_HEAPS_SYSTEM": "y", "CONFIG_DMABUF_HEAPS_CMA": "not set", "CONFIG_DCA": "m", "CONFIG_UIO": "m", "CONFIG_UIO_CIF": "m", "CONFIG_UIO_PDRV_GENIRQ": "m", "CONFIG_UIO_DMEM_GENIRQ": "m", "CONFIG_UIO_AEC": "m", "CONFIG_UIO_SERCOS3": "m", "CONFIG_UIO_PCI_GENERIC": "m", "CONFIG_UIO_NETX": "m", "CONFIG_UIO_PRUSS": "not set", "CONFIG_UIO_MF624": "m", "CONFIG_UIO_HV_GENERIC": "m", "CONFIG_UIO_DFL": "m", "CONFIG_VFIO": "m", "CONFIG_VFIO_GROUP": "y", "CONFIG_VFIO_CONTAINER": "y", "CONFIG_VFIO_IOMMU_TYPE1": "m", "CONFIG_VFIO_NOIOMMU": "not set", "CONFIG_VFIO_VIRQFD": "y", "CONFIG_VFIO_PCI_CORE": "m", "CONFIG_VFIO_PCI_MMAP": "y", "CONFIG_VFIO_PCI_INTX": "y", "CONFIG_VFIO_PCI": "m", "CONFIG_VFIO_PCI_VGA": "y", "CONFIG_VFIO_PCI_IGD": "y", "CONFIG_MLX5_VFIO_PCI": "m", "CONFIG_PDS_VFIO_PCI": "m", "CONFIG_VFIO_MDEV": "m", "CONFIG_IRQ_BYPASS_MANAGER": "m", "CONFIG_VIRT_DRIVERS": "y", "CONFIG_VMGENID": "y", "CONFIG_VBOXGUEST": "m", "CONFIG_NITRO_ENCLAVES": "m", "CONFIG_ACRN_HSM": "m", "CONFIG_TSM_REPORTS": "m", "CONFIG_EFI_SECRET": "m", "CONFIG_SEV_GUEST": "m", "CONFIG_TDX_GUEST_DRIVER": "m", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_VDPA": "m", "CONFIG_VIRTIO_PMEM": "m", "CONFIG_VIRTIO_BALLOON": "m", "CONFIG_VIRTIO_MEM": "m", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "m", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "y", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "m", "CONFIG_VDPA": "m", "CONFIG_VDPA_SIM": "m", "CONFIG_VDPA_SIM_NET": "m", "CONFIG_VDPA_SIM_BLOCK": "m", "CONFIG_VDPA_USER": "not set", "CONFIG_IFCVF": "m", "CONFIG_MLX5_VDPA": "y", "CONFIG_MLX5_VDPA_NET": "m", "CONFIG_MLX5_VDPA_STEERING_DEBUG": "not set", "CONFIG_VP_VDPA": "m", "CONFIG_ALIBABA_ENI_VDPA": "not set", "CONFIG_SNET_VDPA": "not set", "CONFIG_VHOST_IOTLB": "m", "CONFIG_VHOST_RING": "m", "CONFIG_VHOST_TASK": "y", "CONFIG_VHOST": "m", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "m", "CONFIG_VHOST_SCSI": "m", "CONFIG_VHOST_VSOCK": "m", "CONFIG_VHOST_VDPA": "m", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_HYPERV": "m", "CONFIG_HYPERV_VTL_MODE": "not set", "CONFIG_HYPERV_TIMER": "y", "CONFIG_HYPERV_UTILS": "m", "CONFIG_HYPERV_BALLOON": "m", "CONFIG_XEN_BALLOON": "y", "CONFIG_XEN_BALLOON_MEMORY_HOTPLUG": "y", "CONFIG_XEN_MEMORY_HOTPLUG_LIMIT": "512", "CONFIG_XEN_SCRUB_PAGES_DEFAULT": "y", "CONFIG_XEN_DEV_EVTCHN": "m", "CONFIG_XEN_BACKEND": "y", "CONFIG_XENFS": "m", "CONFIG_XEN_COMPAT_XENFS": "y", "CONFIG_XEN_SYS_HYPERVISOR": "y", "CONFIG_XEN_XENBUS_FRONTEND": "y", "CONFIG_XEN_GNTDEV": "m", "CONFIG_XEN_GNTDEV_DMABUF": "y", "CONFIG_XEN_GRANT_DEV_ALLOC": "m", "CONFIG_XEN_GRANT_DMA_ALLOC": "y", "CONFIG_SWIOTLB_XEN": "y", "CONFIG_XEN_PCI_STUB": "y", "CONFIG_XEN_PCIDEV_BACKEND": "m", "CONFIG_XEN_PVCALLS_FRONTEND": "not set", "CONFIG_XEN_PVCALLS_BACKEND": "y", "CONFIG_XEN_SCSI_BACKEND": "m", "CONFIG_XEN_PRIVCMD": "m", "CONFIG_XEN_ACPI_PROCESSOR": "m", "CONFIG_XEN_MCE_LOG": "y", "CONFIG_XEN_HAVE_PVMMU": "y", "CONFIG_XEN_EFI": "y", "CONFIG_XEN_AUTO_XLATE": "y", "CONFIG_XEN_ACPI": "y", "CONFIG_XEN_SYMS": "y", "CONFIG_XEN_HAVE_VPMU": "y", "CONFIG_XEN_FRONT_PGDIR_SHBUF": "m", "CONFIG_XEN_UNPOPULATED_ALLOC": "y", "CONFIG_XEN_GRANT_DMA_OPS": "y", "CONFIG_XEN_VIRTIO": "y", "CONFIG_XEN_VIRTIO_FORCE_GRANT": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "y", "CONFIG_PRISM2_USB": "m", "CONFIG_RTL8192U": "m", "CONFIG_RTLLIB": "m", "CONFIG_RTLLIB_CRYPTO_CCMP": "m", "CONFIG_RTLLIB_CRYPTO_TKIP": "m", "CONFIG_RTLLIB_CRYPTO_WEP": "m", "CONFIG_RTL8192E": "m", "CONFIG_RTL8723BS": "m", "CONFIG_R8712U": "m", "CONFIG_RTS5208": "m", "CONFIG_VT6655": "m", "CONFIG_VT6656": "m", "CONFIG_ADIS16203": "not set", "CONFIG_ADIS16240": "not set", "CONFIG_AD7816": "not set", "CONFIG_ADT7316": "not set", "CONFIG_AD9832": "not set", "CONFIG_AD9834": "not set", "CONFIG_AD5933": "not set", "CONFIG_AD2S1210": "not set", "CONFIG_FB_SM750": "not set", "CONFIG_STAGING_MEDIA": "y", "CONFIG_INTEL_ATOMISP": "y", "CONFIG_VIDEO_ATOMISP": "m", "CONFIG_VIDEO_ATOMISP_ISP2401": "y", "CONFIG_VIDEO_ATOMISP_OV2722": "m", "CONFIG_VIDEO_ATOMISP_GC2235": "m", "CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER": "m", "CONFIG_VIDEO_ATOMISP_MT9M114": "m", "CONFIG_VIDEO_ATOMISP_GC0310": "m", "CONFIG_VIDEO_ATOMISP_OV2680": "m", "CONFIG_VIDEO_ATOMISP_OV5693": "m", "CONFIG_VIDEO_ATOMISP_LM3554": "m", "CONFIG_DVB_AV7110_IR": "y", "CONFIG_DVB_AV7110": "m", "CONFIG_DVB_AV7110_OSD": "y", "CONFIG_DVB_BUDGET_PATCH": "m", "CONFIG_DVB_SP8870": "m", "CONFIG_VIDEO_IPU3_IMGU": "m", "CONFIG_STAGING_MEDIA_DEPRECATED": "y", "CONFIG_VIDEO_ATMEL_ISC_BASE": "not set", "CONFIG_LTE_GDM724X": "m", "CONFIG_FB_TFT": "not set", "CONFIG_KS7010": "m", "CONFIG_PI433": "not set", "CONFIG_FIELDBUS_DEV": "not set", "CONFIG_QLGE": "m", "CONFIG_VME_BUS": "not set", "CONFIG_CHROME_PLATFORMS": "y", "CONFIG_CHROMEOS_ACPI": "m", "CONFIG_CHROMEOS_LAPTOP": "m", "CONFIG_CHROMEOS_PSTORE": "m", "CONFIG_CHROMEOS_TBMC": "m", "CONFIG_CROS_EC": "m", "CONFIG_CROS_EC_I2C": "m", "CONFIG_CROS_EC_ISHTP": "m", "CONFIG_CROS_EC_SPI": "m", "CONFIG_CROS_EC_UART": "m", "CONFIG_CROS_EC_LPC": "m", "CONFIG_CROS_EC_PROTO": "y", "CONFIG_CROS_KBD_LED_BACKLIGHT": "m", "CONFIG_CROS_EC_CHARDEV": "m", "CONFIG_CROS_EC_LIGHTBAR": "m", "CONFIG_CROS_EC_DEBUGFS": "m", "CONFIG_CROS_EC_SENSORHUB": "m", "CONFIG_CROS_EC_SYSFS": "m", "CONFIG_CROS_EC_TYPEC": "m", "CONFIG_CROS_HPS_I2C": "m", "CONFIG_CROS_USBPD_LOGGER": "m", "CONFIG_CROS_USBPD_NOTIFY": "m", "CONFIG_CHROMEOS_PRIVACY_SCREEN": "m", "CONFIG_CROS_TYPEC_SWITCH": "m", "CONFIG_WILCO_EC": "m", "CONFIG_WILCO_EC_DEBUGFS": "not set", "CONFIG_WILCO_EC_EVENTS": "m", "CONFIG_WILCO_EC_TELEMETRY": "m", "CONFIG_MELLANOX_PLATFORM": "y", "CONFIG_MLXREG_HOTPLUG": "m", "CONFIG_MLXREG_IO": "m", "CONFIG_MLXREG_LC": "m", "CONFIG_NVSW_SN2201": "m", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE3_WMI": "m", "CONFIG_SURFACE_3_POWER_OPREGION": "m", "CONFIG_SURFACE_ACPI_NOTIFY": "m", "CONFIG_SURFACE_AGGREGATOR_CDEV": "m", "CONFIG_SURFACE_AGGREGATOR_HUB": "m", "CONFIG_SURFACE_AGGREGATOR_REGISTRY": "m", "CONFIG_SURFACE_AGGREGATOR_TABLET_SWITCH": "m", "CONFIG_SURFACE_DTX": "m", "CONFIG_SURFACE_GPE": "m", "CONFIG_SURFACE_HOTPLUG": "m", "CONFIG_SURFACE_PLATFORM_PROFILE": "m", "CONFIG_SURFACE_PRO3_BUTTON": "m", "CONFIG_SURFACE_AGGREGATOR": "m", "CONFIG_SURFACE_AGGREGATOR_BUS": "y", "CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "m", "CONFIG_UV_SYSFS": "m", "CONFIG_MXM_WMI": "m", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "m", "CONFIG_XIAOMI_WMI": "m", "CONFIG_GIGABYTE_WMI": "m", "CONFIG_YOGABOOK_WMI": "m", "CONFIG_ACERHDF": "m", "CONFIG_ACER_WIRELESS": "m", "CONFIG_ACER_WMI": "m", "CONFIG_AMD_PMF": "m", "CONFIG_AMD_PMC": "m", "CONFIG_AMD_HSMP": "m", "CONFIG_ADV_SWBUTTON": "m", "CONFIG_APPLE_GMUX": "m", "CONFIG_ASUS_LAPTOP": "m", "CONFIG_ASUS_WIRELESS": "m", "CONFIG_ASUS_WMI": "m", "CONFIG_ASUS_NB_WMI": "m", "CONFIG_ASUS_TF103C_DOCK": "m", "CONFIG_MERAKI_MX100": "m", "CONFIG_EEEPC_LAPTOP": "m", "CONFIG_EEEPC_WMI": "m", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "y", "CONFIG_ALIENWARE_WMI": "m", "CONFIG_DCDBAS": "m", "CONFIG_DELL_LAPTOP": "m", "CONFIG_DELL_RBU": "m", "CONFIG_DELL_RBTN": "m", "CONFIG_DELL_SMBIOS": "m", "CONFIG_DELL_SMBIOS_WMI": "y", "CONFIG_DELL_SMBIOS_SMM": "y", "CONFIG_DELL_SMO8800": "m", "CONFIG_DELL_WMI": "m", "CONFIG_DELL_WMI_PRIVACY": "y", "CONFIG_DELL_WMI_AIO": "m", "CONFIG_DELL_WMI_DESCRIPTOR": "m", "CONFIG_DELL_WMI_DDV": "m", "CONFIG_DELL_WMI_LED": "m", "CONFIG_DELL_WMI_SYSMAN": "m", "CONFIG_AMILO_RFKILL": "m", "CONFIG_FUJITSU_LAPTOP": "m", "CONFIG_FUJITSU_TABLET": "m", "CONFIG_GPD_POCKET_FAN": "m", "CONFIG_X86_PLATFORM_DRIVERS_HP": "y", "CONFIG_HP_ACCEL": "m", "CONFIG_HP_WMI": "m", "CONFIG_WIRELESS_HOTKEY": "m", "CONFIG_IBM_RTL": "m", "CONFIG_IDEAPAD_LAPTOP": "m", "CONFIG_LENOVO_YMC": "m", "CONFIG_SENSORS_HDAPS": "m", "CONFIG_THINKPAD_ACPI": "m", "CONFIG_THINKPAD_ACPI_ALSA_SUPPORT": "y", "CONFIG_THINKPAD_ACPI_DEBUGFACILITIES": "not set", "CONFIG_THINKPAD_ACPI_DEBUG": "not set", "CONFIG_THINKPAD_ACPI_UNSAFE_LEDS": "not set", "CONFIG_THINKPAD_ACPI_VIDEO": "y", "CONFIG_THINKPAD_ACPI_HOTKEY_POLL": "y", "CONFIG_THINKPAD_LMI": "m", "CONFIG_INTEL_ATOMISP2_PDX86": "y", "CONFIG_INTEL_ATOMISP2_LED": "m", "CONFIG_INTEL_IFS": "m", "CONFIG_INTEL_SAR_INT1092": "m", "CONFIG_INTEL_SKL_INT3472": "m", "CONFIG_INTEL_PMC_CORE": "m", "CONFIG_INTEL_PMT_CLASS": "m", "CONFIG_INTEL_PMT_TELEMETRY": "m", "CONFIG_INTEL_PMT_CRASHLOG": "m", "CONFIG_INTEL_SPEED_SELECT_TPMI": "m", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "m", "CONFIG_INTEL_TELEMETRY": "m", "CONFIG_INTEL_WMI": "y", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "m", "CONFIG_INTEL_WMI_THUNDERBOLT": "m", "CONFIG_INTEL_UNCORE_FREQ_CONTROL_TPMI": "m", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "m", "CONFIG_INTEL_HID_EVENT": "m", "CONFIG_INTEL_VBTN": "m", "CONFIG_INTEL_INT0002_VGPIO": "m", "CONFIG_INTEL_OAKTRAIL": "m", "CONFIG_INTEL_BXTWC_PMIC_TMU": "m", "CONFIG_INTEL_CHTWC_INT33FE": "m", "CONFIG_INTEL_ISHTP_ECLITE": "m", "CONFIG_INTEL_MRFLD_PWRBTN": "m", "CONFIG_INTEL_PUNIT_IPC": "m", "CONFIG_INTEL_RST": "m", "CONFIG_INTEL_SDSI": "m", "CONFIG_INTEL_SMARTCONNECT": "m", "CONFIG_INTEL_TPMI": "m", "CONFIG_INTEL_TURBO_MAX_3": "y", "CONFIG_INTEL_VSEC": "m", "CONFIG_MSI_EC": "m", "CONFIG_MSI_LAPTOP": "m", "CONFIG_MSI_WMI": "m", "CONFIG_PCENGINES_APU2": "m", "CONFIG_BARCO_P50_GPIO": "m", "CONFIG_SAMSUNG_LAPTOP": "m", "CONFIG_SAMSUNG_Q10": "m", "CONFIG_ACPI_TOSHIBA": "m", "CONFIG_TOSHIBA_BT_RFKILL": "m", "CONFIG_TOSHIBA_HAPS": "m", "CONFIG_TOSHIBA_WMI": "m", "CONFIG_ACPI_CMPC": "m", "CONFIG_COMPAL_LAPTOP": "m", "CONFIG_LG_LAPTOP": "m", "CONFIG_PANASONIC_LAPTOP": "m", "CONFIG_SONY_LAPTOP": "m", "CONFIG_SONYPI_COMPAT": "y", "CONFIG_SYSTEM76_ACPI": "m", "CONFIG_TOPSTAR_LAPTOP": "m", "CONFIG_SERIAL_MULTI_INSTANTIATE": "m", "CONFIG_MLX_PLATFORM": "m", "CONFIG_TOUCHSCREEN_DMI": "y", "CONFIG_X86_ANDROID_TABLETS": "m", "CONFIG_FW_ATTR_CLASS": "m", "CONFIG_INTEL_IPS": "m", "CONFIG_INTEL_SCU_IPC": "y", "CONFIG_INTEL_SCU": "y", "CONFIG_INTEL_SCU_PCI": "y", "CONFIG_INTEL_SCU_PLATFORM": "m", "CONFIG_INTEL_SCU_IPC_UTIL": "m", "CONFIG_SIEMENS_SIMATIC_IPC": "m", "CONFIG_WINMATE_FM07_KEYS": "m", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_LMK04832": "m", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "m", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_TPS68470": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "m", "CONFIG_COMMON_CLK_NXP": "not set", "CONFIG_COMMON_CLK_PWM": "not set", "CONFIG_COMMON_CLK_PXA": "not set", "CONFIG_COMMON_CLK_STM32MP135": "not set", "CONFIG_COMMON_CLK_STM32MP157": "not set", "CONFIG_COMMON_CLK_STM32F": "not set", "CONFIG_COMMON_CLK_STM32H7": "not set", "CONFIG_COMMON_CLK_MMP2": "not set", "CONFIG_CLK_IMX1": "not set", "CONFIG_CLK_IMX25": "not set", "CONFIG_CLK_IMX27": "not set", "CONFIG_CLK_IMX31": "not set", "CONFIG_CLK_IMX35": "not set", "CONFIG_CLK_IMX5": "not set", "CONFIG_CLK_IMX6Q": "not set", "CONFIG_CLK_IMX6SL": "not set", "CONFIG_CLK_IMX6SLL": "not set", "CONFIG_CLK_IMX6SX": "not set", "CONFIG_CLK_IMX6UL": "not set", "CONFIG_CLK_IMX7D": "not set", "CONFIG_CLK_IMX7ULP": "not set", "CONFIG_CLK_VF610": "not set", "CONFIG_COMMON_CLK_PIC32": "not set", "CONFIG_CLK_INTEL_SOCFPGA": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "y", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MTK_CPUX_TIMER": "not set", "CONFIG_SH_TIMER_CMT": "not set", "CONFIG_SH_TIMER_MTU2": "not set", "CONFIG_SH_TIMER_TMU": "not set", "CONFIG_EM_TIMER_STI": "not set", "CONFIG_GXP_TIMER": "not set", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMUFD_DRIVER": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_IO_PGTABLE": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "not set", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "y", "CONFIG_IOMMU_DMA": "y", "CONFIG_IOMMU_SVA": "y", "CONFIG_AMD_IOMMU": "y", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "y", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_HYPERV_IOMMU": "y", "CONFIG_VIRTIO_IOMMU": "m", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG": "m", "CONFIG_RPMSG_CHAR": "m", "CONFIG_RPMSG_CTRL": "m", "CONFIG_RPMSG_NS": "m", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "m", "CONFIG_SOUNDWIRE": "m", "CONFIG_SOUNDWIRE_AMD": "m", "CONFIG_SOUNDWIRE_CADENCE": "m", "CONFIG_SOUNDWIRE_INTEL": "m", "CONFIG_SOUNDWIRE_QCOM": "not set", "CONFIG_SOUNDWIRE_GENERIC_ALLOCATION": "m", "CONFIG_IMX8M_BLK_CTRL": "not set", "CONFIG_IMX9_BLK_CTRL": "not set", "CONFIG_WPCM450_SOC": "m", "CONFIG_QCOM_QMI_HELPERS": "m", "CONFIG_SUNXI_SRAM": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "y", "CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND": "m", "CONFIG_DEVFREQ_GOV_PERFORMANCE": "m", "CONFIG_DEVFREQ_GOV_POWERSAVE": "m", "CONFIG_DEVFREQ_GOV_USERSPACE": "m", "CONFIG_DEVFREQ_GOV_PASSIVE": "m", "CONFIG_PM_DEVFREQ_EVENT": "y", "CONFIG_EXTCON": "y", "CONFIG_EXTCON_ADC_JACK": "not set", "CONFIG_EXTCON_AXP288": "m", "CONFIG_EXTCON_FSA9480": "m", "CONFIG_EXTCON_GPIO": "m", "CONFIG_EXTCON_INTEL_INT3496": "m", "CONFIG_EXTCON_INTEL_MRFLD": "m", "CONFIG_EXTCON_MAX3355": "m", "CONFIG_EXTCON_PTN5150": "m", "CONFIG_EXTCON_RT8973A": "not set", "CONFIG_EXTCON_SM5502": "m", "CONFIG_EXTCON_USB_GPIO": "not set", "CONFIG_EXTCON_USBC_CROS_EC": "m", "CONFIG_EXTCON_USBC_TUSB320": "m", "CONFIG_MEMORY": "y", "CONFIG_FPGA_DFL_EMIF": "m", "CONFIG_IIO": "m", "CONFIG_IIO_BUFFER": "y", "CONFIG_IIO_BUFFER_CB": "m", "CONFIG_IIO_BUFFER_DMA": "m", "CONFIG_IIO_BUFFER_DMAENGINE": "m", "CONFIG_IIO_BUFFER_HW_CONSUMER": "not set", "CONFIG_IIO_KFIFO_BUF": "m", "CONFIG_IIO_TRIGGERED_BUFFER": "m", "CONFIG_IIO_CONFIGFS": "m", "CONFIG_IIO_TRIGGER": "y", "CONFIG_IIO_CONSUMERS_PER_TRIGGER": "2", "CONFIG_IIO_SW_DEVICE": "m", "CONFIG_IIO_SW_TRIGGER": "m", "CONFIG_IIO_TRIGGERED_EVENT": "m", "CONFIG_ADIS16201": "not set", "CONFIG_ADIS16209": "not set", "CONFIG_ADXL313_I2C": "not set", "CONFIG_ADXL313_SPI": "not set", "CONFIG_ADXL355_I2C": "not set", "CONFIG_ADXL355_SPI": "not set", "CONFIG_ADXL367_SPI": "not set", "CONFIG_ADXL367_I2C": "not set", "CONFIG_ADXL372_SPI": "not set", "CONFIG_ADXL372_I2C": "not set", "CONFIG_BMA220": "not set", "CONFIG_BMA400": "not set", "CONFIG_BMC150_ACCEL": "m", "CONFIG_BMC150_ACCEL_I2C": "m", "CONFIG_BMC150_ACCEL_SPI": "m", "CONFIG_BMI088_ACCEL": "not set", "CONFIG_DA280": "not set", "CONFIG_DA311": "not set", "CONFIG_DMARD06": "not set", "CONFIG_DMARD09": "not set", "CONFIG_DMARD10": "not set", "CONFIG_FXLS8962AF_I2C": "not set", "CONFIG_FXLS8962AF_SPI": "not set", "CONFIG_HID_SENSOR_ACCEL_3D": "m", "CONFIG_IIO_ST_ACCEL_3AXIS": "not set", "CONFIG_IIO_KX022A_SPI": "not set", "CONFIG_IIO_KX022A_I2C": "not set", "CONFIG_KXSD9": "not set", "CONFIG_KXCJK1013": "m", "CONFIG_MC3230": "not set", "CONFIG_MMA7455": "m", "CONFIG_MMA7455_I2C": "m", "CONFIG_MMA7455_SPI": "m", "CONFIG_MMA7660": "not set", "CONFIG_MMA8452": "not set", "CONFIG_MMA9551_CORE": "m", "CONFIG_MMA9551": "m", "CONFIG_MMA9553": "m", "CONFIG_MSA311": "not set", "CONFIG_MXC4005": "m", "CONFIG_MXC6255": "m", "CONFIG_SCA3000": "not set", "CONFIG_SCA3300": "not set", "CONFIG_STK8312": "m", "CONFIG_STK8BA50": "m", "CONFIG_AD4130": "not set", "CONFIG_AD7091R5": "not set", "CONFIG_AD7124": "not set", "CONFIG_AD7192": "not set", "CONFIG_AD7266": "not set", "CONFIG_AD7280": "not set", "CONFIG_AD7291": "not set", "CONFIG_AD7292": "not set", "CONFIG_AD7298": "not set", "CONFIG_AD7476": "not set", "CONFIG_AD7606_IFACE_PARALLEL": "not set", "CONFIG_AD7606_IFACE_SPI": "not set", "CONFIG_AD7766": "not set", "CONFIG_AD7768_1": "not set", "CONFIG_AD7780": "not set", "CONFIG_AD7791": "not set", "CONFIG_AD7793": "not set", "CONFIG_AD7887": "not set", "CONFIG_AD7923": "not set", "CONFIG_AD7949": "not set", "CONFIG_AD799X": "not set", "CONFIG_AXP20X_ADC": "m", "CONFIG_AXP288_ADC": "m", "CONFIG_CC10001_ADC": "not set", "CONFIG_DLN2_ADC": "m", "CONFIG_ENVELOPE_DETECTOR": "not set", "CONFIG_HI8435": "m", "CONFIG_HX711": "not set", "CONFIG_INA2XX_ADC": "not set", "CONFIG_INTEL_MRFLD_ADC": "not set", "CONFIG_LTC2471": "not set", "CONFIG_LTC2485": "not set", "CONFIG_LTC2496": "not set", "CONFIG_LTC2497": "not set", "CONFIG_MAX1027": "not set", "CONFIG_MAX11100": "not set", "CONFIG_MAX1118": "not set", "CONFIG_MAX11205": "not set", "CONFIG_MAX11410": "not set", "CONFIG_MAX1241": "not set", "CONFIG_MAX1363": "not set", "CONFIG_MAX9611": "not set", "CONFIG_MCP320X": "not set", "CONFIG_MCP3422": "not set", "CONFIG_MCP3911": "not set", "CONFIG_NAU7802": "not set", "CONFIG_QCOM_SPMI_IADC": "not set", "CONFIG_QCOM_SPMI_VADC": "not set", "CONFIG_QCOM_SPMI_ADC5": "not set", "CONFIG_RICHTEK_RTQ6056": "not set", "CONFIG_SD_ADC_MODULATOR": "not set", "CONFIG_TI_ADC081C": "not set", "CONFIG_TI_ADC0832": "not set", "CONFIG_TI_ADC084S021": "not set", "CONFIG_TI_ADC12138": "not set", "CONFIG_TI_ADC108S102": "not set", "CONFIG_TI_ADC128S052": "not set", "CONFIG_TI_ADC161S626": "not set", "CONFIG_TI_ADS1015": "not set", "CONFIG_TI_ADS7924": "not set", "CONFIG_TI_ADS1100": "not set", "CONFIG_TI_ADS7950": "not set", "CONFIG_TI_ADS8344": "not set", "CONFIG_TI_ADS8688": "not set", "CONFIG_TI_ADS124S08": "not set", "CONFIG_TI_ADS131E08": "not set", "CONFIG_TI_LMP92064": "not set", "CONFIG_TI_TLC4541": "not set", "CONFIG_TI_TSC2046": "not set", "CONFIG_VF610_ADC": "not set", "CONFIG_VIPERBOARD_ADC": "not set", "CONFIG_XILINX_XADC": "not set", "CONFIG_AD74115": "not set", "CONFIG_AD74413R": "not set", "CONFIG_STX104": "not set", "CONFIG_IIO_RESCALE": "m", "CONFIG_AD8366": "not set", "CONFIG_ADA4250": "not set", "CONFIG_HMC425": "not set", "CONFIG_AD7150": "not set", "CONFIG_AD7746": "not set", "CONFIG_ATLAS_PH_SENSOR": "m", "CONFIG_ATLAS_EZO_SENSOR": "not set", "CONFIG_BME680": "m", "CONFIG_BME680_I2C": "m", "CONFIG_BME680_SPI": "m", "CONFIG_CCS811": "not set", "CONFIG_IAQCORE": "m", "CONFIG_PMS7003": "not set", "CONFIG_SCD30_CORE": "not set", "CONFIG_SCD4X": "not set", "CONFIG_SENSIRION_SGP30": "not set", "CONFIG_SENSIRION_SGP40": "not set", "CONFIG_SPS30_I2C": "not set", "CONFIG_SPS30_SERIAL": "not set", "CONFIG_SENSEAIR_SUNRISE_CO2": "not set", "CONFIG_VZ89X": "m", "CONFIG_IIO_CROS_EC_SENSORS_CORE": "not set", "CONFIG_HID_SENSOR_IIO_COMMON": "m", "CONFIG_HID_SENSOR_IIO_TRIGGER": "m", "CONFIG_IIO_MS_SENSORS_I2C": "m", "CONFIG_IIO_SSP_SENSORHUB": "not set", "CONFIG_AD3552R": "not set", "CONFIG_AD5064": "not set", "CONFIG_AD5360": "not set", "CONFIG_AD5380": "not set", "CONFIG_AD5421": "not set", "CONFIG_AD5446": "not set", "CONFIG_AD5449": "not set", "CONFIG_AD5592R": "not set", "CONFIG_AD5593R": "not set", "CONFIG_AD5504": "not set", "CONFIG_AD5624R_SPI": "not set", "CONFIG_LTC2688": "not set", "CONFIG_AD5686_SPI": "not set", "CONFIG_AD5696_I2C": "not set", "CONFIG_AD5755": "not set", "CONFIG_AD5758": "not set", "CONFIG_AD5761": "m", "CONFIG_AD5764": "not set", "CONFIG_AD5766": "not set", "CONFIG_AD5770R": "not set", "CONFIG_AD5791": "not set", "CONFIG_AD7293": "not set", "CONFIG_AD7303": "not set", "CONFIG_AD8801": "not set", "CONFIG_CIO_DAC": "not set", "CONFIG_DPOT_DAC": "not set", "CONFIG_DS4424": "not set", "CONFIG_LTC1660": "not set", "CONFIG_LTC2632": "not set", "CONFIG_M62332": "not set", "CONFIG_MAX517": "not set", "CONFIG_MAX5522": "not set", "CONFIG_MAX5821": "not set", "CONFIG_MCP4725": "not set", "CONFIG_MCP4922": "not set", "CONFIG_TI_DAC082S085": "not set", "CONFIG_TI_DAC5571": "not set", "CONFIG_TI_DAC7311": "not set", "CONFIG_TI_DAC7612": "not set", "CONFIG_VF610_DAC": "not set", "CONFIG_IIO_SIMPLE_DUMMY": "not set", "CONFIG_ADMV8818": "not set", "CONFIG_AD9523": "not set", "CONFIG_ADF4350": "not set", "CONFIG_ADF4371": "not set", "CONFIG_ADF4377": "not set", "CONFIG_ADMV1013": "not set", "CONFIG_ADMV1014": "not set", "CONFIG_ADMV4420": "not set", "CONFIG_ADRF6780": "not set", "CONFIG_ADIS16080": "not set", "CONFIG_ADIS16130": "not set", "CONFIG_ADIS16136": "not set", "CONFIG_ADIS16260": "not set", "CONFIG_ADXRS290": "not set", "CONFIG_ADXRS450": "not set", "CONFIG_BMG160": "not set", "CONFIG_FXAS21002C": "not set", "CONFIG_HID_SENSOR_GYRO_3D": "m", "CONFIG_MPU3050_I2C": "not set", "CONFIG_IIO_ST_GYRO_3AXIS": "not set", "CONFIG_ITG3200": "not set", "CONFIG_AFE4403": "not set", "CONFIG_AFE4404": "not set", "CONFIG_MAX30100": "m", "CONFIG_MAX30102": "m", "CONFIG_AM2315": "m", "CONFIG_DHT11": "not set", "CONFIG_HDC100X": "m", "CONFIG_HDC2010": "not set", "CONFIG_HID_SENSOR_HUMIDITY": "m", "CONFIG_HTS221": "not set", "CONFIG_HTU21": "m", "CONFIG_SI7005": "not set", "CONFIG_SI7020": "not set", "CONFIG_ADIS16400": "not set", "CONFIG_ADIS16460": "not set", "CONFIG_ADIS16475": "not set", "CONFIG_ADIS16480": "not set", "CONFIG_BMI160": "m", "CONFIG_BMI160_I2C": "m", "CONFIG_BMI160_SPI": "m", "CONFIG_BOSCH_BNO055_SERIAL": "not set", "CONFIG_BOSCH_BNO055_I2C": "not set", "CONFIG_FXOS8700_I2C": "not set", "CONFIG_FXOS8700_SPI": "not set", "CONFIG_KMX61": "m", "CONFIG_INV_ICM42600_I2C": "not set", "CONFIG_INV_ICM42600_SPI": "not set", "CONFIG_INV_MPU6050_IIO": "m", "CONFIG_INV_MPU6050_I2C": "m", "CONFIG_INV_MPU6050_SPI": "not set", "CONFIG_IIO_ST_LSM6DSX": "not set", "CONFIG_IIO_ST_LSM9DS0": "not set", "CONFIG_ACPI_ALS": "m", "CONFIG_ADJD_S311": "not set", "CONFIG_ADUX1020": "not set", "CONFIG_AL3010": "not set", "CONFIG_AL3320A": "not set", "CONFIG_APDS9300": "not set", "CONFIG_APDS9960": "m", "CONFIG_AS73211": "not set", "CONFIG_BH1750": "not set", "CONFIG_BH1780": "m", "CONFIG_CM32181": "not set", "CONFIG_CM3232": "not set", "CONFIG_CM3323": "not set", "CONFIG_CM3605": "not set", "CONFIG_CM36651": "not set", "CONFIG_GP2AP002": "not set", "CONFIG_GP2AP020A00F": "not set", "CONFIG_IQS621_ALS": "not set", "CONFIG_SENSORS_ISL29018": "not set", "CONFIG_SENSORS_ISL29028": "not set", "CONFIG_ISL29125": "not set", "CONFIG_HID_SENSOR_ALS": "m", "CONFIG_HID_SENSOR_PROX": "m", "CONFIG_JSA1212": "m", "CONFIG_ROHM_BU27034": "not set", "CONFIG_RPR0521": "m", "CONFIG_SENSORS_LM3533": "not set", "CONFIG_LTR501": "not set", "CONFIG_LTRF216A": "not set", "CONFIG_LV0104CS": "not set", "CONFIG_MAX44000": "m", "CONFIG_MAX44009": "m", "CONFIG_NOA1305": "not set", "CONFIG_OPT3001": "not set", "CONFIG_PA12203001": "not set", "CONFIG_SI1133": "not set", "CONFIG_SI1145": "not set", "CONFIG_STK3310": "not set", "CONFIG_ST_UVIS25": "not set", "CONFIG_TCS3414": "not set", "CONFIG_TCS3472": "not set", "CONFIG_SENSORS_TSL2563": "not set", "CONFIG_TSL2583": "not set", "CONFIG_TSL2591": "not set", "CONFIG_TSL2772": "not set", "CONFIG_TSL4531": "not set", "CONFIG_US5182D": "m", "CONFIG_VCNL4000": "not set", "CONFIG_VCNL4035": "not set", "CONFIG_VEML6030": "not set", "CONFIG_VEML6070": "m", "CONFIG_VL6180": "m", "CONFIG_ZOPT2201": "not set", "CONFIG_AK8974": "not set", "CONFIG_AK8975": "not set", "CONFIG_AK09911": "not set", "CONFIG_BMC150_MAGN": "m", "CONFIG_BMC150_MAGN_I2C": "m", "CONFIG_BMC150_MAGN_SPI": "m", "CONFIG_MAG3110": "not set", "CONFIG_HID_SENSOR_MAGNETOMETER_3D": "m", "CONFIG_MMC35240": "not set", "CONFIG_IIO_ST_MAGN_3AXIS": "not set", "CONFIG_SENSORS_HMC5843_I2C": "not set", "CONFIG_SENSORS_HMC5843_SPI": "not set", "CONFIG_SENSORS_RM3100_I2C": "not set", "CONFIG_SENSORS_RM3100_SPI": "not set", "CONFIG_TI_TMAG5273": "not set", "CONFIG_YAMAHA_YAS530": "not set", "CONFIG_IIO_MUX": "m", "CONFIG_HID_SENSOR_INCLINOMETER_3D": "m", "CONFIG_HID_SENSOR_DEVICE_ROTATION": "m", "CONFIG_IIO_HRTIMER_TRIGGER": "m", "CONFIG_IIO_INTERRUPT_TRIGGER": "not set", "CONFIG_IIO_TIGHTLOOP_TRIGGER": "not set", "CONFIG_IIO_SYSFS_TRIGGER": "not set", "CONFIG_IQS624_POS": "not set", "CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE": "not set", "CONFIG_AD5110": "not set", "CONFIG_AD5272": "m", "CONFIG_DS1803": "m", "CONFIG_MAX5432": "not set", "CONFIG_MAX5481": "not set", "CONFIG_MAX5487": "m", "CONFIG_MCP4018": "m", "CONFIG_MCP4131": "m", "CONFIG_MCP4531": "m", "CONFIG_MCP41010": "m", "CONFIG_TPL0102": "m", "CONFIG_LMP91000": "not set", "CONFIG_ABP060MG": "not set", "CONFIG_BMP280": "m", "CONFIG_BMP280_I2C": "m", "CONFIG_BMP280_SPI": "m", "CONFIG_DLHL60D": "not set", "CONFIG_DPS310": "not set", "CONFIG_HID_SENSOR_PRESS": "m", "CONFIG_HP03": "m", "CONFIG_ICP10100": "not set", "CONFIG_MPL115_I2C": "not set", "CONFIG_MPL115_SPI": "not set", "CONFIG_MPL3115": "not set", "CONFIG_MS5611": "not set", "CONFIG_MS5637": "m", "CONFIG_IIO_ST_PRESS": "not set", "CONFIG_T5403": "not set", "CONFIG_HP206C": "m", "CONFIG_ZPA2326": "not set", "CONFIG_AS3935": "not set", "CONFIG_CROS_EC_MKBP_PROXIMITY": "not set", "CONFIG_ISL29501": "m", "CONFIG_LIDAR_LITE_V2": "m", "CONFIG_MB1232": "not set", "CONFIG_PING": "not set", "CONFIG_RFD77402": "m", "CONFIG_SRF04": "m", "CONFIG_SX9310": "not set", "CONFIG_SX9324": "not set", "CONFIG_SX9360": "not set", "CONFIG_SX9500": "m", "CONFIG_SRF08": "not set", "CONFIG_VCNL3020": "not set", "CONFIG_VL53L0X_I2C": "m", "CONFIG_AD2S90": "not set", "CONFIG_AD2S1200": "not set", "CONFIG_IQS620AT_TEMP": "not set", "CONFIG_LTC2983": "not set", "CONFIG_MAXIM_THERMOCOUPLE": "not set", "CONFIG_HID_SENSOR_TEMP": "m", "CONFIG_MLX90614": "m", "CONFIG_MLX90632": "m", "CONFIG_TMP006": "not set", "CONFIG_TMP007": "not set", "CONFIG_TMP117": "not set", "CONFIG_TSYS01": "m", "CONFIG_TSYS02D": "m", "CONFIG_MAX30208": "m", "CONFIG_MAX31856": "m", "CONFIG_MAX31865": "m", "CONFIG_NTB": "m", "CONFIG_NTB_MSI": "y", "CONFIG_NTB_AMD": "m", "CONFIG_NTB_IDT": "m", "CONFIG_NTB_INTEL": "m", "CONFIG_NTB_EPF": "m", "CONFIG_NTB_SWITCHTEC": "m", "CONFIG_NTB_PINGPONG": "not set", "CONFIG_NTB_TOOL": "not set", "CONFIG_NTB_PERF": "m", "CONFIG_NTB_MSI_TEST": "not set", "CONFIG_NTB_TRANSPORT": "m", "CONFIG_PWM": "y", "CONFIG_PWM_SYSFS": "y", "CONFIG_PWM_DEBUG": "not set", "CONFIG_PWM_CLK": "m", "CONFIG_PWM_CROS_EC": "m", "CONFIG_PWM_DWC": "m", "CONFIG_PWM_IQS620A": "m", "CONFIG_PWM_LP3943": "m", "CONFIG_PWM_LPSS": "m", "CONFIG_PWM_LPSS_PCI": "m", "CONFIG_PWM_LPSS_PLATFORM": "m", "CONFIG_PWM_PCA9685": "m", "CONFIG_ARM_GIC_V3_ITS": "not set", "CONFIG_MADERA_IRQ": "m", "CONFIG_SUNPLUS_SP7021_INTC": "not set", "CONFIG_IPACK_BUS": "m", "CONFIG_BOARD_TPCI200": "m", "CONFIG_SERIAL_IPOCTAL": "m", "CONFIG_RESET_CONTROLLER": "y", "CONFIG_RESET_ATH79": "not set", "CONFIG_RESET_AXS10X": "not set", "CONFIG_RESET_LANTIQ": "not set", "CONFIG_RESET_LPC18XX": "not set", "CONFIG_RESET_NPCM": "not set", "CONFIG_RESET_SIMPLE": "not set", "CONFIG_RESET_SOCFPGA": "not set", "CONFIG_RESET_SUNPLUS": "not set", "CONFIG_RESET_SUNXI": "not set", "CONFIG_RESET_TI_SYSCON": "not set", "CONFIG_RESET_TI_TPS380X": "not set", "CONFIG_RESET_ZYNQ": "not set", "CONFIG_RESET_TEGRA_BPMP": "not set", "CONFIG_GENERIC_PHY": "y", "CONFIG_GENERIC_PHY_MIPI_DPHY": "y", "CONFIG_USB_LGM_PHY": "m", "CONFIG_PHY_CAN_TRANSCEIVER": "m", "CONFIG_BCM_KONA_USB2_PHY": "m", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_CPCAP_USB": "not set", "CONFIG_PHY_QCOM_USB_HS": "m", "CONFIG_PHY_QCOM_USB_HSIC": "not set", "CONFIG_PHY_TUSB1210": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "m", "CONFIG_POWERCAP": "y", "CONFIG_INTEL_RAPL_CORE": "m", "CONFIG_INTEL_RAPL": "m", "CONFIG_INTEL_RAPL_TPMI": "m", "CONFIG_IDLE_INJECT": "y", "CONFIG_MCB": "not set", "CONFIG_RAS": "y", "CONFIG_RAS_CEC": "y", "CONFIG_RAS_CEC_DEBUG": "not set", "CONFIG_AMD_ATL": "m", "CONFIG_AMD_ATL_PRM": "y", "CONFIG_RAS_FMPM": "m", "CONFIG_USB4": "m", "CONFIG_USB4_DEBUGFS_WRITE": "not set", "CONFIG_USB4_DMA_TEST": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "m", "CONFIG_BLK_DEV_PMEM": "m", "CONFIG_ND_CLAIM": "y", "CONFIG_ND_BTT": "m", "CONFIG_BTT": "y", "CONFIG_ND_PFN": "m", "CONFIG_NVDIMM_PFN": "y", "CONFIG_NVDIMM_DAX": "y", "CONFIG_NVDIMM_KEYS": "y", "CONFIG_NVDIMM_SECURITY_TEST": "not set", "CONFIG_DAX": "y", "CONFIG_DEV_DAX": "m", "CONFIG_DEV_DAX_PMEM": "m", "CONFIG_DEV_DAX_HMEM": "m", "CONFIG_DEV_DAX_CXL": "m", "CONFIG_DEV_DAX_HMEM_DEVICES": "y", "CONFIG_DEV_DAX_KMEM": "m", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUT_SL28_VPD": "m", "CONFIG_NVMEM_LAYOUT_ONIE_TLV": "m", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_NVMEM_SPMI_SDAM": "m", "CONFIG_NVMEM_STM32_BSEC_OPTEE_TA": "not set", "CONFIG_STM": "m", "CONFIG_STM_PROTO_BASIC": "m", "CONFIG_STM_PROTO_SYS_T": "m", "CONFIG_STM_DUMMY": "m", "CONFIG_STM_SOURCE_CONSOLE": "m", "CONFIG_STM_SOURCE_HEARTBEAT": "m", "CONFIG_STM_SOURCE_FTRACE": "m", "CONFIG_INTEL_TH": "m", "CONFIG_INTEL_TH_PCI": "m", "CONFIG_INTEL_TH_ACPI": "m", "CONFIG_INTEL_TH_GTH": "m", "CONFIG_INTEL_TH_STH": "m", "CONFIG_INTEL_TH_MSU": "m", "CONFIG_INTEL_TH_PTI": "m", "CONFIG_INTEL_TH_DEBUG": "not set", "CONFIG_FPGA": "m", "CONFIG_ALTERA_PR_IP_CORE": "m", "CONFIG_FPGA_MGR_ALTERA_PS_SPI": "not set", "CONFIG_FPGA_MGR_ALTERA_CVP": "m", "CONFIG_FPGA_MGR_XILINX_SPI": "not set", "CONFIG_FPGA_MGR_MACHXO2_SPI": "not set", "CONFIG_FPGA_BRIDGE": "m", "CONFIG_ALTERA_FREEZE_BRIDGE": "m", "CONFIG_XILINX_PR_DECOUPLER": "m", "CONFIG_FPGA_REGION": "m", "CONFIG_FPGA_DFL": "m", "CONFIG_FPGA_DFL_FME": "m", "CONFIG_FPGA_DFL_FME_MGR": "m", "CONFIG_FPGA_DFL_FME_BRIDGE": "m", "CONFIG_FPGA_DFL_FME_REGION": "m", "CONFIG_FPGA_DFL_AFU": "m", "CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000": "m", "CONFIG_FPGA_DFL_PCI": "m", "CONFIG_FPGA_MGR_MICROCHIP_SPI": "m", "CONFIG_FPGA_MGR_LATTICE_SYSCONFIG": "m", "CONFIG_FPGA_MGR_LATTICE_SYSCONFIG_SPI": "m", "CONFIG_TEE": "m", "CONFIG_AMDTEE": "m", "CONFIG_MULTIPLEXER": "m", "CONFIG_MUX_ADG792A": "not set", "CONFIG_MUX_ADGS1408": "not set", "CONFIG_MUX_GPIO": "not set", "CONFIG_PM_OPP": "y", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "y", "CONFIG_DPLL": "y", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "m", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "m", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "m", "CONFIG_REISERFS_FS": "m", "CONFIG_REISERFS_CHECK": "not set", "CONFIG_REISERFS_PROC_INFO": "not set", "CONFIG_REISERFS_FS_XATTR": "y", "CONFIG_REISERFS_FS_POSIX_ACL": "y", "CONFIG_REISERFS_FS_SECURITY": "y", "CONFIG_JFS_FS": "m", "CONFIG_JFS_POSIX_ACL": "y", "CONFIG_JFS_SECURITY": "y", "CONFIG_JFS_DEBUG": "not set", "CONFIG_JFS_STATISTICS": "y", "CONFIG_XFS_FS": "m", "CONFIG_XFS_SUPPORT_V4": "y", "CONFIG_XFS_SUPPORT_ASCII_CI": "y", "CONFIG_XFS_QUOTA": "y", "CONFIG_XFS_POSIX_ACL": "y", "CONFIG_XFS_RT": "not set", "CONFIG_XFS_ONLINE_SCRUB": "not set", "CONFIG_XFS_WARN": "not set", "CONFIG_XFS_DEBUG": "not set", "CONFIG_GFS2_FS": "m", "CONFIG_GFS2_FS_LOCKING_DLM": "y", "CONFIG_OCFS2_FS": "m", "CONFIG_OCFS2_FS_O2CB": "m", "CONFIG_OCFS2_FS_USERSPACE_CLUSTER": "m", "CONFIG_OCFS2_FS_STATS": "y", "CONFIG_OCFS2_DEBUG_MASKLOG": "y", "CONFIG_OCFS2_DEBUG_FS": "not set", "CONFIG_BTRFS_FS": "m", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_CHECK_INTEGRITY": "not set", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "y", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "m", "CONFIG_F2FS_FS": "not set", "CONFIG_ZONEFS_FS": "m", "CONFIG_FS_DAX": "y", "CONFIG_FS_DAX_PMD": "y", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "y", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "m", "CONFIG_FS_ENCRYPTION_INLINE_CRYPT": "y", "CONFIG_FS_VERITY": "y", "CONFIG_FS_VERITY_BUILTIN_SIGNATURES": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "y", "CONFIG_FANOTIFY_ACCESS_PERMISSIONS": "y", "CONFIG_QUOTA": "y", "CONFIG_QUOTA_NETLINK_INTERFACE": "y", "CONFIG_QUOTA_DEBUG": "not set", "CONFIG_QUOTA_TREE": "m", "CONFIG_QFMT_V1": "m", "CONFIG_QFMT_V2": "m", "CONFIG_QUOTACTL": "y", "CONFIG_AUTOFS4_FS": "m", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "m", "CONFIG_FUSE_DAX": "y", "CONFIG_OVERLAY_FS": "m", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "not set", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_NETFS_SUPPORT": "m", "CONFIG_NETFS_STATS": "y", "CONFIG_FSCACHE": "m", "CONFIG_FSCACHE_STATS": "y", "CONFIG_FSCACHE_DEBUG": "not set", "CONFIG_CACHEFILES": "m", "CONFIG_CACHEFILES_DEBUG": "not set", "CONFIG_CACHEFILES_ERROR_INJECTION": "not set", "CONFIG_CACHEFILES_ONDEMAND": "not set", "CONFIG_ISO9660_FS": "m", "CONFIG_JOLIET": "y", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "m", "CONFIG_FAT_FS": "m", "CONFIG_MSDOS_FS": "m", "CONFIG_VFAT_FS": "m", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "m", "CONFIG_EXFAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_NTFS_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_VMCORE": "y", "CONFIG_PROC_VMCORE_DEVICE_DUMP": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_PROC_CPU_RESCTRL": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "y", "CONFIG_ARCH_SUPPORTS_HUGETLBFS": "not set", "CONFIG_HUGETLBFS": "y", "CONFIG_HUGETLB_PAGE": "y", "CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP": "y", "CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON": "not set", "CONFIG_MEMFD_CREATE": "y", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "m", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "m", "CONFIG_ADFS_FS": "m", "CONFIG_ADFS_FS_RW": "y", "CONFIG_AFFS_FS": "m", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "m", "CONFIG_BEFS_FS": "m", "CONFIG_BEFS_DEBUG": "not set", "CONFIG_BFS_FS": "m", "CONFIG_EFS_FS": "m", "CONFIG_JFFS2_FS": "m", "CONFIG_JFFS2_FS_DEBUG": "0", "CONFIG_JFFS2_FS_WRITEBUFFER": "y", "CONFIG_JFFS2_FS_WBUF_VERIFY": "not set", "CONFIG_JFFS2_SUMMARY": "y", "CONFIG_JFFS2_FS_XATTR": "y", "CONFIG_JFFS2_FS_POSIX_ACL": "y", "CONFIG_JFFS2_FS_SECURITY": "y", "CONFIG_JFFS2_COMPRESSION_OPTIONS": "y", "CONFIG_JFFS2_ZLIB": "y", "CONFIG_JFFS2_LZO": "not set", "CONFIG_JFFS2_RTIME": "y", "CONFIG_JFFS2_RUBIN": "not set", "CONFIG_JFFS2_CMODE_NONE": "not set", "CONFIG_JFFS2_CMODE_PRIORITY": "y", "CONFIG_JFFS2_CMODE_SIZE": "not set", "CONFIG_JFFS2_CMODE_FAVOURLZO": "not set", "CONFIG_UBIFS_FS": "m", "CONFIG_UBIFS_FS_ADVANCED_COMPR": "y", "CONFIG_UBIFS_FS_LZO": "y", "CONFIG_UBIFS_FS_ZLIB": "y", "CONFIG_UBIFS_FS_ZSTD": "y", "CONFIG_UBIFS_ATIME_SUPPORT": "y", "CONFIG_UBIFS_FS_XATTR": "y", "CONFIG_UBIFS_FS_SECURITY": "y", "CONFIG_UBIFS_FS_AUTHENTICATION": "y", "CONFIG_CRAMFS": "m", "CONFIG_CRAMFS_BLOCKDEV": "y", "CONFIG_CRAMFS_MTD": "y", "CONFIG_SQUASHFS": "m", "CONFIG_SQUASHFS_FILE_CACHE": "not set", "CONFIG_SQUASHFS_FILE_DIRECT": "y", "CONFIG_SQUASHFS_DECOMP_SINGLE": "y", "CONFIG_SQUASHFS_DECOMP_MULTI": "y", "CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU": "y", "CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT": "y", "CONFIG_SQUASHFS_MOUNT_DECOMP_THREADS": "y", "CONFIG_SQUASHFS_XATTR": "y", "CONFIG_SQUASHFS_ZLIB": "y", "CONFIG_SQUASHFS_LZ4": "y", "CONFIG_SQUASHFS_LZO": "y", "CONFIG_SQUASHFS_XZ": "y", "CONFIG_SQUASHFS_ZSTD": "y", "CONFIG_SQUASHFS_4K_DEVBLK_SIZE": "not set", "CONFIG_SQUASHFS_EMBEDDED": "not set", "CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE": "3", "CONFIG_VXFS_FS": "m", "CONFIG_MINIX_FS": "m", "CONFIG_OMFS_FS": "m", "CONFIG_HPFS_FS": "m", "CONFIG_QNX4FS_FS": "m", "CONFIG_QNX6FS_FS": "m", "CONFIG_QNX6FS_DEBUG": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "not set", "CONFIG_ROMFS_BACKED_BY_MTD": "not set", "CONFIG_ROMFS_BACKED_BY_BOTH": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_ROMFS_ON_MTD": "y", "CONFIG_PSTORE": "y", "CONFIG_PSTORE_DEFAULT_KMSG_BYTES": "10240", "CONFIG_PSTORE_DEFLATE_COMPRESS": "m", "CONFIG_PSTORE_LZO_COMPRESS": "y", "CONFIG_PSTORE_LZ4_COMPRESS": "not set", "CONFIG_PSTORE_LZ4HC_COMPRESS": "m", "CONFIG_PSTORE_842_COMPRESS": "not set", "CONFIG_PSTORE_ZSTD_COMPRESS": "y", "CONFIG_PSTORE_COMPRESS": "y", "CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_LZO_COMPRESS_DEFAULT": "y", "CONFIG_PSTORE_LZ4HC_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_ZSTD_COMPRESS_DEFAULT": "not set", "CONFIG_PSTORE_COMPRESS_DEFAULT": "\\"lzo\\"", "CONFIG_PSTORE_CONSOLE": "y", "CONFIG_PSTORE_PMSG": "y", "CONFIG_PSTORE_FTRACE": "y", "CONFIG_PSTORE_RAM": "m", "CONFIG_PSTORE_ZONE": "m", "CONFIG_PSTORE_BLK": "m", "CONFIG_PSTORE_BLK_BLKDEV": "\\"\\"", "CONFIG_PSTORE_BLK_KMSG_SIZE": "64", "CONFIG_PSTORE_BLK_MAX_REASON": "2", "CONFIG_PSTORE_BLK_PMSG_SIZE": "64", "CONFIG_PSTORE_BLK_CONSOLE_SIZE": "64", "CONFIG_PSTORE_BLK_FTRACE_SIZE": "64", "CONFIG_SYSV_FS": "m", "CONFIG_UFS_FS": "m", "CONFIG_UFS_FS_WRITE": "y", "CONFIG_UFS_DEBUG": "not set", "CONFIG_EROFS_FS": "m", "CONFIG_EROFS_FS_DEBUG": "not set", "CONFIG_EROFS_FS_XATTR": "y", "CONFIG_EROFS_FS_POSIX_ACL": "y", "CONFIG_EROFS_FS_SECURITY": "y", "CONFIG_EROFS_FS_ZIP": "y", "CONFIG_EROFS_FS_ZIP_LZMA": "y", "CONFIG_EROFS_FS_PCPU_KTHREAD": "not set", "CONFIG_VBOXSF_FS": "m", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "m", "CONFIG_NFS_V2": "m", "CONFIG_NFS_V3": "m", "CONFIG_NFS_V3_ACL": "y", "CONFIG_NFS_V4": "m", "CONFIG_NFS_SWAP": "y", "CONFIG_NFS_V4_1": "y", "CONFIG_NFS_V4_2": "y", "CONFIG_PNFS_FILE_LAYOUT": "m", "CONFIG_PNFS_BLOCK": "m", "CONFIG_PNFS_FLEXFILE_LAYOUT": "m", "CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN": "\\"kernel.org\\"", "CONFIG_NFS_V4_1_MIGRATION": "not set", "CONFIG_NFS_V4_SECURITY_LABEL": "y", "CONFIG_NFS_FSCACHE": "y", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DEBUG": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFS_V4_2_READ_PLUS": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "y", "CONFIG_NFSD_V2_ACL": "y", "CONFIG_NFSD_V3_ACL": "y", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_PNFS": "y", "CONFIG_NFSD_BLOCKLAYOUT": "y", "CONFIG_NFSD_SCSILAYOUT": "y", "CONFIG_NFSD_FLEXFILELAYOUT": "y", "CONFIG_NFSD_V4_2_INTER_SSC": "y", "CONFIG_NFSD_V4_SECURITY_LABEL": "y", "CONFIG_GRACE_PERIOD": "m", "CONFIG_LOCKD": "m", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_ACL_SUPPORT": "m", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_V4_2_SSC_HELPER": "y", "CONFIG_SUNRPC": "m", "CONFIG_SUNRPC_GSS": "m", "CONFIG_SUNRPC_BACKCHANNEL": "y", "CONFIG_SUNRPC_SWAP": "y", "CONFIG_RPCSEC_GSS_KRB5": "m", "CONFIG_RPCSEC_GSS_KRB5_CRYPTOSYSTEM": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_DES": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "y", "CONFIG_SUNRPC_DEBUG": "y", "CONFIG_SUNRPC_XPRT_RDMA": "m", "CONFIG_CEPH_FS": "m", "CONFIG_CEPH_FSCACHE": "y", "CONFIG_CEPH_FS_POSIX_ACL": "y", "CONFIG_CEPH_FS_SECURITY_LABEL": "y", "CONFIG_CIFS": "m", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "y", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "y", "CONFIG_CIFS_SWN_UPCALL": "y", "CONFIG_CIFS_SMB_DIRECT": "not set", "CONFIG_CIFS_FSCACHE": "y", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "m", "CONFIG_CODA_FS": "m", "CONFIG_AFS_FS": "m", "CONFIG_AFS_DEBUG": "not set", "CONFIG_AFS_FSCACHE": "y", "CONFIG_AFS_DEBUG_CURSOR": "not set", "CONFIG_9P_FS": "m", "CONFIG_9P_FSCACHE": "y", "CONFIG_9P_FS_POSIX_ACL": "y", "CONFIG_9P_FS_SECURITY": "y", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"utf8\\"", "CONFIG_NLS_CODEPAGE_437": "m", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "m", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "m", "CONFIG_NLS_MAC_CELTIC": "m", "CONFIG_NLS_MAC_CENTEURO": "m", "CONFIG_NLS_MAC_CROATIAN": "m", "CONFIG_NLS_MAC_CYRILLIC": "m", "CONFIG_NLS_MAC_GAELIC": "m", "CONFIG_NLS_MAC_GREEK": "m", "CONFIG_NLS_MAC_ICELAND": "m", "CONFIG_NLS_MAC_INUIT": "m", "CONFIG_NLS_MAC_ROMANIAN": "m", "CONFIG_NLS_MAC_TURKISH": "m", "CONFIG_NLS_UTF8": "m", "CONFIG_DLM": "m", "CONFIG_DLM_DEBUG": "y", "CONFIG_UNICODE": "y", "CONFIG_UNICODE_NORMALIZATION_SELFTEST": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "y", "CONFIG_PERSISTENT_KEYRINGS": "y", "CONFIG_TRUSTED_KEYS": "y", "CONFIG_TRUSTED_KEYS_TPM": "y", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "y", "CONFIG_KEY_NOTIFICATIONS": "y", "CONFIG_SECURITY_DMESG_RESTRICT": "y", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "y", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_INFINIBAND": "y", "CONFIG_SECURITY_NETWORK_XFRM": "y", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "y", "CONFIG_LSM_MMAP_MIN_ADDR": "0", "CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR": "y", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "y", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_HIDDEN_AREA": "y", "CONFIG_SECURITY_SELINUX": "y", "CONFIG_SECURITY_SELINUX_BOOTPARAM": "y", "CONFIG_SECURITY_SELINUX_DEVELOP": "y", "CONFIG_SECURITY_SELINUX_AVC_STATS": "y", "CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS": "9", "CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE": "256", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "y", "CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY": "2048", "CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG": "1024", "CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER": "not set", "CONFIG_SECURITY_TOMOYO_POLICY_LOADER": "\\"/sbin/tomoyo-init\\"", "CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER": "\\"/sbin/init\\"", "CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING": "not set", "CONFIG_SECURITY_APPARMOR": "y", "CONFIG_SECURITY_APPARMOR_DEBUG": "not set", "CONFIG_SECURITY_APPARMOR_INTROSPECT_POLICY": "y", "CONFIG_SECURITY_APPARMOR_HASH": "y", "CONFIG_SECURITY_APPARMOR_HASH_DEFAULT": "y", "CONFIG_SECURITY_APPARMOR_EXPORT_BINARY": "y", "CONFIG_SECURITY_APPARMOR_PARANOID_LOAD": "y", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "y", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "y", "CONFIG_SECURITY_LOCKDOWN_LSM_EARLY": "y", "CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT": "y", "CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE": "y", "CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY": "not set", "CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "y", "CONFIG_INTEGRITY_ASYMMETRIC_KEYS": "y", "CONFIG_INTEGRITY_TRUSTED_KEYRING": "y", "CONFIG_INTEGRITY_PLATFORM_KEYRING": "y", "CONFIG_INTEGRITY_MACHINE_KEYRING": "y", "CONFIG_INTEGRITY_CA_MACHINE_KEYRING": "not set", "CONFIG_LOAD_UEFI_KEYS": "y", "CONFIG_INTEGRITY_AUDIT": "y", "CONFIG_IMA": "y", "CONFIG_IMA_KEXEC": "not set", "CONFIG_IMA_MEASURE_PCR_IDX": "10", "CONFIG_IMA_LSM_RULES": "y", "CONFIG_IMA_NG_TEMPLATE": "y", "CONFIG_IMA_SIG_TEMPLATE": "not set", "CONFIG_IMA_DEFAULT_TEMPLATE": "\\"ima-ng\\"", "CONFIG_IMA_DEFAULT_HASH_SHA1": "not set", "CONFIG_IMA_DEFAULT_HASH_SHA256": "y", "CONFIG_IMA_DEFAULT_HASH_SHA512": "not set", "CONFIG_IMA_DEFAULT_HASH": "\\"sha256\\"", "CONFIG_IMA_WRITE_POLICY": "not set", "CONFIG_IMA_READ_POLICY": "y", "CONFIG_IMA_APPRAISE": "y", "CONFIG_IMA_ARCH_POLICY": "y", "CONFIG_IMA_APPRAISE_BUILD_POLICY": "not set", "CONFIG_IMA_APPRAISE_BOOTPARAM": "y", "CONFIG_IMA_APPRAISE_MODSIG": "y", "CONFIG_IMA_TRUSTED_KEYRING": "y", "CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY": "not set", "CONFIG_IMA_BLACKLIST_KEYRING": "not set", "CONFIG_IMA_LOAD_X509": "not set", "CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS": "y", "CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS": "y", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "y", "CONFIG_IMA_DISABLE_HTABLE": "y", "CONFIG_EVM": "y", "CONFIG_EVM_ATTR_FSUUID": "y", "CONFIG_EVM_ADD_XATTRS": "y", "CONFIG_EVM_LOAD_X509": "not set", "CONFIG_DEFAULT_SECURITY_SELINUX": "not set", "CONFIG_DEFAULT_SECURITY_TOMOYO": "not set", "CONFIG_DEFAULT_SECURITY_APPARMOR": "y", "CONFIG_DEFAULT_SECURITY_DAC": "not set", "CONFIG_LSM": "\\"integrity,apparmor,selinux,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER": "not set", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "not set", "CONFIG_INIT_STACK_NONE": "y", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "not set", "CONFIG_CC_HAS_RANDSTRUCT": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT": "not set", "CONFIG_GCC_PLUGIN_RANDSTRUCT": "not set", "CONFIG_XOR_BLOCKS": "m", "CONFIG_ASYNC_CORE": "m", "CONFIG_ASYNC_MEMCPY": "m", "CONFIG_ASYNC_XOR": "m", "CONFIG_ASYNC_PQ": "m", "CONFIG_ASYNC_RAID6_RECOV": "m", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_FIPS": "y", "CONFIG_CRYPTO_FIPS_NAME": "\\"Linux Kernel Cryptographic API\\"", "CONFIG_CRYPTO_FIPS_CUSTOM_VERSION": "not set", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "m", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "not set", "CONFIG_CRYPTO_MANAGER_EXTRA_TESTS": "not set", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "m", "CONFIG_CRYPTO_CRYPTD": "m", "CONFIG_CRYPTO_AUTHENC": "m", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_SIMD": "m", "CONFIG_CRYPTO_ENGINE": "m", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "y", "CONFIG_CRYPTO_DH_RFC7919_GROUPS": "y", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "m", "CONFIG_CRYPTO_ECDSA": "y", "CONFIG_CRYPTO_ECRDSA": "m", "CONFIG_CRYPTO_SM2": "m", "CONFIG_CRYPTO_CURVE25519": "m", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "m", "CONFIG_CRYPTO_ARIA": "m", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "m", "CONFIG_CRYPTO_FCRYPT": "m", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4": "m", "CONFIG_CRYPTO_SM4_GENERIC": "m", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "m", "CONFIG_CRYPTO_CHACHA20": "m", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CFB": "m", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "m", "CONFIG_CRYPTO_KEYWRAP": "m", "CONFIG_CRYPTO_LRW": "m", "CONFIG_CRYPTO_OFB": "m", "CONFIG_CRYPTO_PCBC": "m", "CONFIG_CRYPTO_XCTR": "m", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_NHPOLY1305": "m", "CONFIG_CRYPTO_AEGIS128": "m", "CONFIG_CRYPTO_CHACHA20POLY1305": "m", "CONFIG_CRYPTO_CCM": "m", "CONFIG_CRYPTO_GCM": "m", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "m", "CONFIG_CRYPTO_ESSIV": "m", "CONFIG_CRYPTO_BLAKE2B": "m", "CONFIG_CRYPTO_CMAC": "m", "CONFIG_CRYPTO_GHASH": "m", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "m", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLYVAL": "m", "CONFIG_CRYPTO_POLY1305": "m", "CONFIG_CRYPTO_RMD160": "m", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3": "m", "CONFIG_CRYPTO_SM3_GENERIC": "m", "CONFIG_CRYPTO_STREEBOG": "m", "CONFIG_CRYPTO_VMAC": "m", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "m", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "m", "CONFIG_CRYPTO_CRCT10DIF": "y", "CONFIG_CRYPTO_CRC64_ROCKSOFT": "m", "CONFIG_CRYPTO_DEFLATE": "m", "CONFIG_CRYPTO_LZO": "y", "CONFIG_CRYPTO_842": "m", "CONFIG_CRYPTO_LZ4": "m", "CONFIG_CRYPTO_LZ4HC": "m", "CONFIG_CRYPTO_ZSTD": "y", "CONFIG_CRYPTO_ANSI_CPRNG": "m", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "y", "CONFIG_CRYPTO_DRBG_CTR": "y", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_2": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_128": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_1024": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMSIZE_8192": "not set", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_KDF800108_CTR": "y", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_STATS": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_CURVE25519_X86": "m", "CONFIG_CRYPTO_AES_NI_INTEL": "m", "CONFIG_CRYPTO_BLOWFISH_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "m", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "m", "CONFIG_CRYPTO_DES3_EDE_X86_64": "m", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "m", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "m", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "m", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_TWOFISH_X86_64": "m", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "m", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "m", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "m", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "m", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "m", "CONFIG_CRYPTO_CHACHA20_X86_64": "m", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "m", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "m", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "m", "CONFIG_CRYPTO_BLAKE2S_X86": "y", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "m", "CONFIG_CRYPTO_POLY1305_X86_64": "m", "CONFIG_CRYPTO_SHA1_SSSE3": "m", "CONFIG_CRYPTO_SHA256_SSSE3": "m", "CONFIG_CRYPTO_SHA512_SSSE3": "m", "CONFIG_CRYPTO_SM3_AVX_X86_64": "m", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "m", "CONFIG_CRYPTO_CRC32C_INTEL": "m", "CONFIG_CRYPTO_CRC32_PCLMUL": "m", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "y", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "m", "CONFIG_CRYPTO_DEV_PADLOCK_AES": "m", "CONFIG_CRYPTO_DEV_PADLOCK_SHA": "m", "CONFIG_CRYPTO_DEV_ATMEL_I2C": "m", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "m", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "m", "CONFIG_CRYPTO_DEV_CCP": "y", "CONFIG_CRYPTO_DEV_CCP_DD": "m", "CONFIG_CRYPTO_DEV_SP_CCP": "y", "CONFIG_CRYPTO_DEV_CCP_CRYPTO": "m", "CONFIG_CRYPTO_DEV_SP_PSP": "y", "CONFIG_CRYPTO_DEV_CCP_DEBUGFS": "not set", "CONFIG_CRYPTO_DEV_NITROX": "m", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "m", "CONFIG_CRYPTO_DEV_QAT": "m", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "m", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "m", "CONFIG_CRYPTO_DEV_QAT_C62X": "m", "CONFIG_CRYPTO_DEV_QAT_4XXX": "m", "CONFIG_CRYPTO_DEV_QAT_420XX": "m", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "m", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "m", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "m", "CONFIG_CRYPTO_DEV_QAT_ERROR_INJECTION": "not set", "CONFIG_CRYPTO_DEV_IAA_CRYPTO": "m", "CONFIG_CRYPTO_DEV_IAA_CRYPTO_STATS": "y", "CONFIG_CRYPTO_DEV_CHELSIO": "m", "CONFIG_CRYPTO_DEV_VIRTIO": "m", "CONFIG_CRYPTO_DEV_SAFEXCEL": "m", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "m", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "m", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST_RSA": "y", "CONFIG_FIPS_SIGNATURE_SELFTEST_ECDSA": "y", "CONFIG_CHECK_CODESIGN_EKU": "y", "CONFIG_MODULE_SIG_KEY": "\\".kernel_signing_key.pem\\"", "CONFIG_MODULE_SIG_KEY_TYPE_RSA": "y", "CONFIG_MODULE_SIG_KEY_TYPE_ECDSA": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "y", "CONFIG_SYSTEM_BLACKLIST_HASH_LIST": "\\"\\"", "CONFIG_SYSTEM_REVOCATION_LIST": "y", "CONFIG_SYSTEM_REVOCATION_KEYS": "\\"\\"", "CONFIG_SYSTEM_BLACKLIST_AUTH_UPDATE": "y", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "m", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_LINEAR_RANGES": "y", "CONFIG_PACKING": "y", "CONFIG_BITREVERSE": "y", "CONFIG_HAVE_ARCH_BITREVERSE": "not set", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "m", "CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA": "m", "CONFIG_CRYPTO_LIB_CHACHA_GENERIC": "m", "CONFIG_CRYPTO_LIB_CHACHA": "m", "CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519": "m", "CONFIG_CRYPTO_LIB_CURVE25519_GENERIC": "m", "CONFIG_CRYPTO_LIB_CURVE25519": "m", "CONFIG_CRYPTO_LIB_DES": "m", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305": "m", "CONFIG_CRYPTO_LIB_POLY1305_GENERIC": "m", "CONFIG_CRYPTO_LIB_POLY1305": "m", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "m", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "y", "CONFIG_CRC16": "m", "CONFIG_CRC_T10DIF": "y", "CONFIG_CRC64_ROCKSOFT": "m", "CONFIG_CRC_ITU_T": "m", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "m", "CONFIG_CRC4": "m", "CONFIG_CRC7": "m", "CONFIG_LIBCRC32C": "m", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_AUDIT_ARCH_COMPAT_GENERIC": "not set", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_842_COMPRESS": "m", "CONFIG_842_DECOMPRESS": "m", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_COMPRESS": "m", "CONFIG_LZ4HC_COMPRESS": "m", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_IA64": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_MICROLZMA": "y", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_REED_SOLOMON": "m", "CONFIG_REED_SOLOMON_ENC8": "y", "CONFIG_REED_SOLOMON_DEC8": "y", "CONFIG_REED_SOLOMON_DEC16": "y", "CONFIG_BCH": "m", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_BTREE": "y", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_CLOSURES": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED": "y", "CONFIG_SWIOTLB": "y", "CONFIG_DMA_COHERENT_POOL": "y", "CONFIG_DMA_CMA": "y", "CONFIG_DMA_PERNUMA_CMA": "not set", "CONFIG_CMA_SIZE_MBYTES": "0", "CONFIG_CMA_SIZE_SEL_MBYTES": "y", "CONFIG_CMA_SIZE_SEL_PERCENTAGE": "not set", "CONFIG_CMA_SIZE_SEL_MIN": "not set", "CONFIG_CMA_SIZE_SEL_MAX": "not set", "CONFIG_CMA_ALIGNMENT": "8", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_IOMMU_HELPER": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPUMASK_OFFSTACK": "y", "CONFIG_FORCE_NR_CPUS": "not set", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "y", "CONFIG_MPILIB": "y", "CONFIG_SIGNATURE": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "y", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_FONT_6x11": "not set", "CONFIG_FONT_7x14": "not set", "CONFIG_FONT_PEARL_8x8": "not set", "CONFIG_FONT_ACORN_8x8": "not set", "CONFIG_FONT_MINI_4x6": "not set", "CONFIG_FONT_6x10": "not set", "CONFIG_FONT_10x18": "not set", "CONFIG_FONT_SUN8x16": "not set", "CONFIG_FONT_SUN12x22": "not set", "CONFIG_FONT_TER16x32": "y", "CONFIG_FONT_6x8": "y", "CONFIG_SG_SPLIT": "not set", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_NO_SG_CHAIN": "not set", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_MEMREGION": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_SBITMAP": "y", "CONFIG_PARMAN": "m", "CONFIG_OBJAGG": "m", "CONFIG_PLDMFW": "y", "CONFIG_ASN1_ENCODER": "y", "CONFIG_POLYNOMIAL": "m", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "y", "CONFIG_STACKTRACE_BUILD_ID": "y", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "y", "CONFIG_DYNAMIC_DEBUG_CORE": "y", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_LEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "not set", "CONFIG_DEBUG_INFO_DWARF4": "y", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_DEBUG_INFO_BTF": "y", "CONFIG_PAHOLE_HAS_SPLIT_BTF": "y", "CONFIG_PAHOLE_HAS_LANG_EXCLUDE": "y", "CONFIG_DEBUG_INFO_BTF_MODULES": "y", "CONFIG_MODULE_ALLOW_BTF_MISMATCH": "y", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "y", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B": "not set", "CONFIG_OBJTOOL": "y", "CONFIG_VMLINUX_MAP": "y", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "y", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "y", "CONFIG_DEBUG_PAGEALLOC": "y", "CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "y", "CONFIG_PAGE_TABLE_CHECK": "y", "CONFIG_PAGE_TABLE_CHECK_ENFORCED": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "y", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM_IRQSOFF": "not set", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_MEMORY_NOTIFIER_ERROR_INJECT": "m", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "not set", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "0", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STATIC_KEYS": "y", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_LOCKUP_DETECTOR": "y", "CONFIG_SOFTLOCKUP_DETECTOR": "y", "CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC": "not set", "CONFIG_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_HARDLOCKUP_DETECTOR": "y", "CONFIG_BOOTPARAM_HARDLOCKUP_PANIC": "y", "CONFIG_DETECT_HUNG_TASK": "y", "CONFIG_DEFAULT_HUNG_TASK_TIMEOUT": "480", "CONFIG_BOOTPARAM_HUNG_TASK_PANIC": "not set", "CONFIG_WQ_WATCHDOG": "y", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "y", "CONFIG_DEBUG_TIMEKEEPING": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "y", "CONFIG_CSD_LOCK_WAIT_DEBUG_DEFAULT": "not set", "CONFIG_NMI_CHECK_CPU": "y", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "y", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_DEBUG_CLOSURES": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_DEBUG_CREDENTIALS": "not set", "CONFIG_PROVE_RCU": "not set", "CONFIG_TORTURE_TEST": "m", "CONFIG_RCU_SCALE_TEST": "m", "CONFIG_RCU_TORTURE_TEST": "m", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "60", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "y", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "y", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACER_MAX_TRACE": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_RING_BUFFER_ALLOW_SWAP": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "y", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "y", "CONFIG_FUNCTION_PROFILER": "y", "CONFIG_STACK_TRACER": "y", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "y", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "y", "CONFIG_TIMERLAT_TRACER": "y", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "y", "CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP": "y", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_BPF_KPROBE_OVERRIDE": "not set", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_TRACING_MAP": "y", "CONFIG_SYNTH_EVENTS": "y", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "y", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "m", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "m", "CONFIG_SYNTH_EVENT_GEN_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_HIST_TRIGGERS_DEBUG": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "y", "CONFIG_SAMPLES": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "y", "CONFIG_EARLY_PRINTK_USB": "y", "CONFIG_X86_VERBOSE_BOOTUP": "not set", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "y", "CONFIG_EARLY_PRINTK_USB_XDBC": "y", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_IOMMU_DEBUG": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "not set", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "y", "CONFIG_UNWINDER_FRAME_POINTER": "not set", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "m", "CONFIG_PM_NOTIFIER_ERROR_INJECT": "m", "CONFIG_NETDEV_NOTIFIER_ERROR_INJECT": "m", "CONFIG_FUNCTION_ERROR_INJECTION": "y", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "not set", "CONFIG_FAIL_PAGE_ALLOC": "not set", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "not set", "CONFIG_FAIL_FUTEX": "not set", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_FUNCTION": "not set", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAIL_SUNRPC": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "m", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "m", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "m", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "m", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_STRING_SELFTEST": "not set", "CONFIG_TEST_STRING_HELPERS": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_PARMAN": "not set", "CONFIG_TEST_LKM": "m", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_USER_COPY": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "m", "CONFIG_TEST_SYSCTL": "m", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_DYNAMIC_DEBUG": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_LIVEPATCH": "m", "CONFIG_TEST_OBJAGG": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_HMM": "m", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "y", "CONFIG_HYPERV_TESTING": "not set", "CONFIG_SUSE_KERNEL": "y", "CONFIG_SUSE_PRODUCT_SLE": "y", "CONFIG_SUSE_PRODUCT_OPENSUSE_LEAP": "not set", "CONFIG_SUSE_PRODUCT_OPENSUSE_TUMBLEWEED": "not set", "CONFIG_SUSE_PRODUCT_SLFO": "not set", "CONFIG_SUSE_PRODUCT_CODE": "1", "CONFIG_SUSE_VERSION": "15", "CONFIG_SUSE_PATCHLEVEL": "6", "CONFIG_SUSE_AUXRELEASE": "0", "CONFIG_SUSE_HAVE_STABLE_KABI": "y", "CONFIG_SUSE_KERNEL_SUPPORTED": "y", "CONFIG_SUSE_KERNEL_RELEASED": "y"} {"id": "localhost", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Ubuntu 24.04 PC v2 (i440FX + PIIX, arch_caps fix, 1996)", "vendor": "QEMU", "version": "pc-i440fx-noble-v2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-3.0.0": "SMBIOS version 3.0.0", "dmi-3.0.0": "DMI version 3.0.0", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "1.16.3-debian-1.16.3-2", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "QEMU Virtual CPU version 2.5+", "vendor": "Advanced Micro Devices [AMD]", "physid": "400", "businfo": "cpu@0", "version": "15.107.1", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "1", "enabledcores": "1", "microcode": "16777317", "threads": "1"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "x86-64": "64bits extensions (x86-64)", "rep_good": true, "nopl": true, "cpuid": true, "extd_apicid": true, "pni": true, "cx16": true, "hypervisor": true, "lahf_lm": true, "svm": true, "3dnowprefetch": true, "vmmcall": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "440FX - 82441FX PMC [Natoma]", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "02", "width": 32, "clock": 33000000, "children": [{"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "ISA bridge", "product": "82371SB PIIX3 ISA [Natoma/Triton II]", "vendor": "Intel Corporation", "physid": "1", "businfo": "pci@0000:00:01.0", "version": "00", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "input", "claimed": true, "product": "PnP device PNP0303", "physid": "0", "configuration": {"driver": "i8042 kbd"}, "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "input", "claimed": true, "product": "PnP device PNP0f13", "physid": "1", "configuration": {"driver": "i8042 aux"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "storage", "claimed": true, "product": "PnP device PNP0700", "physid": "2", "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "printer", "claimed": true, "product": "PnP device PNP0400", "physid": "3", "configuration": {"driver": "parport_pc"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "communication", "claimed": true, "product": "PnP device PNP0501", "physid": "4", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:05", "class": "system", "claimed": true, "product": "PnP device PNP0b00", "physid": "5", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}]}, {"id": "ide", "class": "storage", "claimed": true, "handle": "PCI:0000:00:01.1", "description": "IDE interface", "product": "82371SB PIIX3 IDE [Natoma/Triton II]", "vendor": "Intel Corporation", "physid": "1.1", "businfo": "pci@0000:00:01.1", "logicalname": ["scsi0", "scsi1"], "version": "00", "width": 32, "clock": 33000000, "configuration": {"driver": "ata_piix", "latency": "0"}, "capabilities": {"ide": true, "isa_compat_mode": "ISA compatibility mode", "bus_master": "bus mastering", "emulated": "Emulated device"}, "children": [{"id": "disk", "class": "disk", "claimed": true, "handle": "GUID:4dcfef44-2bc3-40b2-959f-3e40383d66d1", "description": "ATA Disk", "product": "QEMU HARDDISK", "physid": "0", "businfo": "scsi@0:0.0.0", "logicalname": "/dev/sda", "dev": "8:0", "version": "2.5+", "serial": "QM00001", "units": "bytes", "size": 10737418240, "configuration": {"ansiversion": "5", "guid": "4dcfef44-2bc3-40b2-959f-3e40383d66d1", "logicalsectorsize": "512", "sectorsize": "512"}, "capabilities": {"gpt-1.00": "GUID Partition Table version 1.00", "partitioned": "Partitioned disk", "partitioned:gpt": "GUID partition table"}, "children": [{"id": "volume:0", "class": "volume", "claimed": true, "handle": "GUID:50b94961-a41b-461d-b16e-e0f18b3e8dff", "description": "BIOS Boot partition", "vendor": "EFI", "physid": "1", "businfo": "scsi@0:0.0.0,1", "logicalname": "/dev/sda1", "dev": "8:1", "serial": "50b94961-a41b-461d-b16e-e0f18b3e8dff", "capacity": 2096640, "configuration": {"name": "p.legacy"}, "capabilities": {"nofs": "No filesystem"}}, {"id": "volume:1", "class": "volume", "claimed": true, "handle": "GUID:bb545a9b-ceb8-4128-acff-49312fb3ae63", "description": "Windows FAT volume", "vendor": "mkfs.fat", "physid": "2", "businfo": "scsi@0:0.0.0,2", "logicalname": ["/dev/sda2", "/boot/efi"], "dev": "8:2", "version": "FAT16", "serial": "611a-b413", "size": 18446744073709549568, "configuration": {"FATs": "2", "filesystem": "fat", "label": "EFI", "mount.fstype": "vfat", "mount.options": "rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro", "name": "p.UEFI", "state": "mounted"}, "capabilities": {"boot": "Contains boot code", "fat": "Windows FAT volume", "initialized": "initialized volume"}}, {"id": "volume:2", "class": "volume", "claimed": true, "handle": "GUID:97650326-4901-4605-b585-00c0ef63d6bb", "description": "EFI partition", "physid": "3", "businfo": "scsi@0:0.0.0,3", "logicalname": ["/dev/sda3", "/"], "dev": "8:3", "serial": "97650326-4901-4605-b585-00c0ef63d6bb", "capacity": 10713283584, "configuration": {"mount.fstype": "xfs", "mount.options": "rw,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota", "name": "p.lxroot", "state": "mounted"}}]}, {"id": "cdrom", "class": "disk", "claimed": true, "handle": "SCSI:01:00:00:00", "description": "DVD reader", "product": "QEMU DVD-ROM", "vendor": "QEMU", "physid": "1", "businfo": "scsi@1:0.0.0", "logicalname": ["/dev/cdrom", "/dev/dvd", "/dev/sr0"], "dev": "11:0", "version": "2.5+", "configuration": {"ansiversion": "5", "status": "ready"}, "capabilities": {"removable": "support is removable", "audio": "Audio CD playback", "dvd": "DVD playback"}, "children": [{"id": "medium", "class": "disk", "claimed": true, "physid": "0", "logicalname": "/dev/cdrom", "dev": "11:0"}]}]}, {"id": "bridge", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:01.3", "description": "Bridge", "product": "82371AB/EB/MB PIIX4 ACPI", "vendor": "Intel Corporation", "physid": "1.3", "businfo": "pci@0000:00:01.3", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "piix4_smbus", "latency": "0"}, "capabilities": {"bridge": true}}, {"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "2", "businfo": "pci@0000:00:02.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Ethernet interface", "product": "82540EM Gigabit Ethernet Controller", "vendor": "Intel Corporation", "physid": "3", "businfo": "pci@0000:00:03.0", "logicalname": "eth0", "version": "03", "serial": "52:54:00:12:34:56", "units": "bit/s", "size": 1000000000, "capacity": 1000000000, "width": 32, "clock": 33000000, "configuration": {"autonegotiation": "on", "broadcast": "yes", "driver": "e1000", "driverversion": "6.4.0-150600.23.92-default", "duplex": "full", "ip": "10.0.2.15", "latency": "0", "link": "yes", "multicast": "yes", "port": "twisted pair", "speed": "1Gbit/s"}, "capabilities": {"bus_master": "bus mastering", "rom": "extension ROM", "ethernet": true, "physical": "Physical interface", "tp": "twisted pair", "10bt": "10Mbit/s", "10bt-fd": "10Mbit/s (full duplex)", "100bt": "100Mbit/s", "100bt-fd": "100Mbit/s (full duplex)", "1000bt-fd": "1Gbit/s (full duplex)", "autonegotiation": "Auto-negotiation"}}]}]}, {"id": "input:0", "class": "input", "claimed": true, "product": "AT Translated Set 2 keyboard", "physid": "1", "logicalname": ["input0", "/dev/input/event0", "input0::capslock", "input0::numlock", "input0::scrolllock"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:1", "class": "input", "claimed": true, "product": "ImExPS/2 Generic Explorer Mouse", "physid": "2", "logicalname": ["input2", "/dev/input/event1", "/dev/input/mouse0"], "capabilities": {"i8042": "i8042 PC AT keyboard controller"}}, {"id": "input:2", "class": "input", "claimed": true, "product": "Power Button", "physid": "3", "logicalname": ["input3", "/dev/input/event2"], "capabilities": {"platform": true}}, {"id": "input:3", "class": "input", "claimed": true, "product": "PC Speaker", "physid": "4", "logicalname": ["input4", "/dev/input/event3"], "capabilities": {"isa": "ISA bus"}}]} +2 Poky (Yocto Project Reference Distro) 5.2.4 (walnascar) {"update-alternatives-opkg": "0.7.0:r0:core2_64", "libc6": "2.41+git0+e7c419a295:r0:core2_64", "busybox": "1.37.0:r0:core2_64", "iptables-module-xt-standard": "1.8.11:r0:core2_64", "iptables": "1.8.11:r0:core2_64", "libgcc1": "14.3.0:r0:core2_64", "libstdc++6": "14.3.0:r0:core2_64", "libz1": "1.3.1:r0:core2_64", "libpam": "1.7.1:r0:core2_64", "libabsl-raw-logging-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libtinfo5": "6.5:r0:core2_64", "libsmartcols1": "2.40.4:r0:core2_64", "libcrypto3": "3.4.2:r0:core2_64", "libblkid1": "2.40.4:r0:core2_64", "kernel-module-x-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libmount1": "2.40.4:r0:core2_64", "libcap": "2.75:r0:core2_64", "libuuid1": "2.40.4:r0:core2_64", "base-passwd": "3.6.6:r0:core2_64", "libzstd1": "1.5.7:r0:core2_64", "base-files": "3.0.14:r0:qemux86_64", "bash": "5.2.37:r0:core2_64", "libcrypt2": "4.4.38:r0:core2_64", "perl-module-config-heavy": "5.40.2:r0:core2_64", "perl": "5.40.2:r0:core2_64", "libssl3": "3.4.2:r0:core2_64", "libcom-err2": "1.47.1:r0:core2_64", "libgmp10": "6.3.0:r0:core2_64", "libelf1": "0.192:r0:core2_64", "libabsl-spinlock-wait2501.0.0": "20250127.1:r0:core2_64", "libabsl-base2501.0.0": "20250127.1:r0:core2_64", "liblzma5": "5.6.4:r0:core2_64", "libreadline8": "8.2.13:r0:core2_64", "libbz2-1": "1.0.8:r0:core2_64", "libgpg-error": "1.51:r0:core2_64", "libsqlite3-0": "3.48.0:r0:core2_64", "libsystemd0": "257.6:r0:core2_64", "libncursesw5": "6.5:r0:core2_64", "libxml2": "2.13.8:r0:core2_64", "libdw1": "0.192:r0:core2_64", "libmpfr6": "4.2.1:r0:core2_64", "libext2fs2": "1.47.1:r0:core2_64", "perl-module-constant": "5.40.2:r0:core2_64", "libpython3.13-1.0": "3.13.4:r0:core2_64", "libexpat1": "2.7.2:r0:core2_64", "libpopt0": "1.19:r0:core2_64", "libassuan9": "3.0.2:r0:core2_64", "libudev1": "257.6:r0:core2_64", "kernel-module-ip-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-log-internal-globals2501.0.0": "20250127.1:r0:core2_64", "libattr1": "2.5.2:r0:core2_64", "libacl1": "2.3.2:r0:core2_64", "libgcrypt": "1.11.0:r0:core2_64", "libabsl-malloc-internal2501.0.0": "20250127.1:r0:core2_64", "kernel-module-ip6-tables-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libnetsnmp40": "5.9.4:r0:core2_64", "kernel-module-nf-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "libabsl-time-zone2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-nullguard2501.0.0": "20250127.1:r0:core2_64", "libe2p2": "1.47.1:r0:core2_64", "libnetsnmpagent40": "5.9.4:r0:core2_64", "libarchive": "3.7.9:r0:core2_64", "rpm-archive": "4.20.0:r0:core2_64", "rpm": "4.20.0:r0:core2_64", "libpci3": "3.13.0:r0:core2_64", "libmpc3": "1.3.1:r0:core2_64", "cpp": "14.3.0:r0:core2_64", "libdbus-1-3": "1.16.2:r0:core2_64", "libproc2-1": "4.0.5:r0:core2_64", "libfdisk1": "2.40.4:r0:core2_64", "libabsl-debugging-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-stacktrace2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-keyinit": "1.7.1:r0:core2_64", "pam-plugin-loginuid": "1.7.1:r0:core2_64", "libabsl-flags-commandlineflag2501.0.0": "20250127.1:r0:core2_64", "libabsl-int128-2501.0.0": "20250127.1:r0:core2_64", "libabsl-strerror2501.0.0": "20250127.1:r0:core2_64", "libabsl-exponential-biased2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-private-handle-accessor2501.0.0": "20250127.1:r0:core2_64", "libabsl-leak-check2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes-impl2501.0.0": "20250127.1:r0:core2_64", "libaio1": "0.3.113:r0:core2_64", "libatomic1": "14.3.0:r0:core2_64", "libffi8": "3.4.7:r0:core2_64", "libgdbm6": "1.24:r0:core2_64", "libjson-c5": "0.18:r0:core2_64", "libkrb5support0": "1.21.3:r0:core2_64", "libmnl0": "1.0.5:r0:core2_64", "libpcre1": "8.45:r0:core2_64", "libseccomp": "2.6.0:r0:core2_64", "libsystemd-shared": "257.6:r0:core2_64", "libk5crypto3": "1.21.3:r0:core2_64", "libabsl-log-internal-structured-proto2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-functions2501.0.0": "20250127.1:r0:core2_64", "g++": "14.3.0:r0:core2_64", "libabsl-graphcycles-internal2501.0.0": "20250127.1:r0:core2_64", "logrotate": "3.22.0:r0:core2_64", "tar": "1.35:r0:core2_64", "gpgme": "1.24.2:r0:core2_64", "libgettextlib": "0.23.1:r0:core2_64", "libkmod2": "34.1:r0:core2_64", "libabsl-log-internal-conditions2501.0.0": "20250127.1:r0:core2_64", "nettle": "3.10.1:r0:core2_64", "perl-module-bytes": "5.40.2:r0:core2_64", "perl-module-carp": "5.40.2:r0:core2_64", "perl-module-file-spec-unix": "5.40.2:r0:core2_64", "perl-module-file-spec": "5.40.2:r0:core2_64", "perl-module-selectsaver": "5.40.2:r0:core2_64", "perl-module-symbol": "5.40.2:r0:core2_64", "pam-plugin-unix": "1.7.1:r0:core2_64", "shadow-base": "4.17.3:r0:core2_64", "util-linux": "2.40.4:r0:core2_64", "iputils-ping": "20240905:r0:core2_64", "iputils-ping6": "20240905:r0:core2_64", "openssh-keygen": "9.9p2:r0:core2_64", "libncurses5": "6.5:r0:core2_64", "pstree": "23.7:r0:core2_64", "libabsl-crc-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc32c2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cord-state2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-strings2501.0.0": "20250127.1:r0:core2_64", "libabsl-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-str-format-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-marshalling2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-format2501.0.0": "20250127.1:r0:core2_64", "libabsl-kernel-timeout-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-check-op2501.0.0": "20250127.1:r0:core2_64", "pam-plugin-limits": "1.7.1:r0:core2_64", "sudo-lib": "1.9.17p1:r0:core2_64", "libtcl8.6-0": "8.6.16:r0:core2_64", "libabsl-flags-commandlineflag-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-sink2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-seed-material2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-gen-exception2501.0.0": "20250127.1:r0:core2_64", "libabsl-throw-delegate2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-nat": "1.8.11:r0:core2_64", "libabsl-city2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-fnmatch2501.0.0": "20250127.1:r0:core2_64", "libabsl-low-level-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-hash2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-globals2501.0.0": "20250127.1:r0:core2_64", "libabsl-raw-hash-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-platform2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-slow2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen-hwaes2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-randen2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-internal-pool-urbg2501.0.0": "20250127.1:r0:core2_64", "libabsl-tracing-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-utf8-for-code-point2501.0.0": "20250127.1:r0:core2_64", "libabsl-decode-rust-punycode2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-rust2501.0.0": "20250127.1:r0:core2_64", "libabsl-demangle-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-symbolize2501.0.0": "20250127.1:r0:core2_64", "libabsl-synchronization2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-program-name2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-config2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-reflection2501.0.0": "20250127.1:r0:core2_64", "libabsl-examine-stack2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage-internal2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-handle2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-info2501.0.0": "20250127.1:r0:core2_64", "libabsl-cord2501.0.0": "20250127.1:r0:core2_64", "libabsl-status2501.0.0": "20250127.1:r0:core2_64", "libabsl-statusor2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-usage2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-log-sink-set2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-internal-message2501.0.0": "20250127.1:r0:core2_64", "libabsl-die-if-null2501.0.0": "20250127.1:r0:core2_64", "libabsl-vlog-config-internal2501.0.0": "20250127.1:r0:core2_64", "libcap-ng": "0.8.5:r0:core2_64", "libnl-3-200": "3.11.0:r0:core2_64", "libnpth0": "1.8:r0:core2_64", "libpcre2": "10.46:r0:core2_64", "libglib-2.0-0": "2.84.4:r0:core2_64", "gettext": "0.23.1:r0:core2_64", "libgettextsrc": "0.23.1:r0:core2_64", "libsolv1": "0.7.31:r0:core2_64", "libtirpc3": "1.3.6:r0:core2_64", "libunistring5": "1.3:r0:core2_64", "libidn2-0": "2.3.8:r0:core2_64", "libcurl4": "8.12.1:r0:core2_64", "libdebuginfod1": "0.192:r0:core2_64", "libbfd": "2.44:r0:core2_64", "libopcodes": "2.44:r0:core2_64", "binutils": "2.44:r0:core2_64", "gcc": "14.3.0:r0:core2_64", "libwrap0": "7.6:r0:core2_64", "go-runtime": "1.24.6:r0:core2_64", "runc-opencontainers": "1.2.0+git0+25d4764432:r0:core2_64", "ncurses-terminfo-base": "6.5:r0:core2_64", "containerd": "v2.0.2+git0+06b99ca80c:r0:core2_64", "gcc-symlinks": "14.3.0:r0:core2_64", "curl": "8.12.1:r0:core2_64", "libsolvext1": "0.7.31:r0:core2_64", "desktop-file-utils": "0.28:r0:core2_64", "pkgconfig": "0.29.2+git0+d97db4fae4:r0:core2_64", "shared-mime-info": "2.4:r0:core2_64", "shared-mime-info-data": "2.4:r0:core2_64", "gnupg-gpg": "2.5.5:r0:core2_64", "libnl-genl-3-200": "3.11.0:r0:core2_64", "quota": "4.09:r0:core2_64", "libabsl-log-flags2501.0.0": "20250127.1:r0:core2_64", "libabsl-flags-parse2501.0.0": "20250127.1:r0:core2_64", "libabsl-cordz-sample-token2501.0.0": "20250127.1:r0:core2_64", "libabsl-failure-signal-handler2501.0.0": "20250127.1:r0:core2_64", "libabsl-hashtablez-sampler2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-seed-sequences2501.0.0": "20250127.1:r0:core2_64", "iptables-module-xt-ct": "1.8.11:r0:core2_64", "tcl8": "8.6.16:r0:core2_64", "expect": "5.45.4:r0:core2_64", "sudo-sudo": "1.9.17p1:r0:core2_64", "libabsl-random-internal-distribution-test-util2501.0.0": "20250127.1:r0:core2_64", "libedit0": "20250104+3.1:r1:core2_64", "python3-compression": "3.13.4:r0:core2_64", "python3-core": "3.13.4:r0:core2_64", "python3-stringold": "3.13.4:r0:core2_64", "python3-datetime": "3.13.4:r0:core2_64", "python3-math": "3.13.4:r0:core2_64", "python3-numbers": "3.13.4:r0:core2_64", "python3-pickle": "3.13.4:r0:core2_64", "python3-shell": "3.13.4:r0:core2_64", "python3-mime": "3.13.4:r0:core2_64", "python3-pprint": "3.13.4:r0:core2_64", "python3-threading": "3.13.4:r0:core2_64", "python3-codecs": "3.13.4:r0:core2_64", "python3-html": "3.13.4:r0:core2_64", "python3-json": "3.13.4:r0:core2_64", "python3-xml": "3.13.4:r0:core2_64", "python3-plistlib": "3.13.4:r0:core2_64", "python3-compile": "3.13.4:r0:core2_64", "python3-crypt": "3.13.4:r0:core2_64", "python3-email": "3.13.4:r0:core2_64", "python3-io": "3.13.4:r0:core2_64", "python3-netclient": "3.13.4:r0:core2_64", "python3-netserver": "3.13.4:r0:core2_64", "python3-logging": "3.13.4:r0:core2_64", "python3-ctypes": "3.13.4:r0:core2_64", "python3-pydoc": "3.13.4:r0:core2_64", "python3-unixadmin": "3.13.4:r0:core2_64", "python3-difflib": "3.13.4:r0:core2_64", "python3-xmlrpc": "3.13.4:r0:core2_64", "python3-asyncio": "3.13.4:r0:core2_64", "python3-unittest": "3.13.4:r0:core2_64", "gdb": "16.2:r0:core2_64", "python3-debugger": "3.13.4:r0:core2_64", "python3-sqlite3": "3.13.4:r0:core2_64", "librepo0": "1.19.0:r0:core2_64", "python3-audio": "3.13.4:r0:core2_64", "python3-misc": "3.13.4:r0:core2_64", "python3-fcntl": "3.13.4:r0:core2_64", "python3-image": "3.13.4:r0:core2_64", "python3-mmap": "3.13.4:r0:core2_64", "python3-multiprocessing": "3.13.4:r0:core2_64", "python3-pkgutil": "3.13.4:r0:core2_64", "python3-profile": "3.13.4:r0:core2_64", "python3-tomllib": "3.13.4:r0:core2_64", "python3-doctest": "3.13.4:r0:core2_64", "python3-venv": "3.13.4:r0:core2_64", "python3-mailbox": "3.13.4:r0:core2_64", "python3-terminal": "3.13.4:r0:core2_64", "python3-pkg-resources": "76.0.0:r0:core2_64", "python3-setuptools": "76.0.0:r0:core2_64", "python3-statistics": "3.13.4:r0:core2_64", "python3-zoneinfo": "3.13.4:r0:core2_64", "libcomps0": "0.1.21:r0:core2_64", "python3-ensurepip": "3.13.4:r0:core2_64", "python3-gdbm": "3.13.4:r0:core2_64", "python3-idle": "3.13.4:r0:core2_64", "python3-resource": "3.13.4:r0:core2_64", "python3-syslog": "3.13.4:r0:core2_64", "python3-tkinter": "3.13.4:r0:core2_64", "g++-symlinks": "14.3.0:r0:core2_64", "libkrb5-3": "1.21.3:r0:core2_64", "libgssapi-krb5-2": "1.21.3:r0:core2_64", "systemd-extra-utils": "257.6:r0:core2_64", "slang": "2.3.3:r0:core2_64", "iproute2-ip": "6.13.0:r0:core2_64", "iproute2": "6.13.0:r0:core2_64", "libgdbm-compat4": "1.24:r0:core2_64", "python3-db": "3.13.4:r0:core2_64", "numactl": "2.0.19:r0:core2_64", "libabsl-periodic-sampler2501.0.0": "20250127.1:r0:core2_64", "procps-ps": "4.0.5:r0:core2_64", "procps-sysctl": "4.0.5:r0:core2_64", "procps": "4.0.5:r0:core2_64", "dbus-tools": "1.16.2:r0:core2_64", "cpp-symlinks": "14.3.0:r0:core2_64", "libnetsnmpmibs40": "5.9.4:r0:core2_64", "rpm-sign": "4.20.0:r0:core2_64", "e2fsprogs-dumpe2fs": "1.47.1:r0:core2_64", "e2fsprogs-mke2fs": "1.47.1:r0:core2_64", "libabsl-log-initialize2501.0.0": "20250127.1:r0:core2_64", "attr": "2.5.2:r0:core2_64", "libdevmapper": "1.02.205:r0:core2_64", "lvm2": "2.03.31:r0:core2_64", "libusb-1.0-0": "1.0.27:r0:core2_64", "e2fsprogs-badblocks": "1.47.1:r0:core2_64", "gawk": "5.3.1:r0:core2_64", "elfutils-binutils": "0.192:r0:core2_64", "debugedit": "5.1:r0:core2_64", "libasm1": "0.192:r0:core2_64", "libpanelw5": "6.5:r0:core2_64", "python3-curses": "3.13.4:r0:core2_64", "python3-modules": "3.13.4:r0:core2_64", "kirk": "2.3:r0:core2_64", "liblastlog2-2": "2.40.4:r0:core2_64", "libksba8": "1.6.7:r0:core2_64", "bc": "1.08.1:r0:core2_64", "kmod": "34.1:r0:core2_64", "libss2": "1.47.1:r0:core2_64", "e2fsprogs": "1.47.1:r0:core2_64", "librelp0": "1.11.0:r0:core2_64", "glibc-mtrace": "2.41+git:r0:core2_64", "perl-module-base": "5.40.2:r0:core2_64", "perl-module-builtin": "5.40.2:r0:core2_64", "perl-module-dynaloader": "5.40.2:r0:core2_64", "perl-module-xsloader": "5.40.2:r0:core2_64", "perl-module-io": "5.40.2:r0:core2_64", "perl-module-mro": "5.40.2:r0:core2_64", "perl-module-threads-shared": "5.40.2:r0:core2_64", "perl-module-exporter-heavy": "5.40.2:r0:core2_64", "perl-module-exporter": "5.40.2:r0:core2_64", "perl-module-fcntl": "5.40.2:r0:core2_64", "perl-module-errno": "5.40.2:r0:core2_64", "perl-module-cwd": "5.40.2:r0:core2_64", "perl-module-io-file": "5.40.2:r0:core2_64", "perl-module-io-handle": "5.40.2:r0:core2_64", "perl-module-io-seekable": "5.40.2:r0:core2_64", "perl-module-data-dumper": "5.40.2:r0:core2_64", "perl-module-list-util": "5.40.2:r0:core2_64", "perl-module-scalar-util": "5.40.2:r0:core2_64", "perl-module-text-parsewords": "5.40.2:r0:core2_64", "perl-module-attributes": "5.40.2:r0:core2_64", "perl-module-thread-queue": "5.40.2:r0:core2_64", "perl-module-class-struct": "5.40.2:r0:core2_64", "perl-module-file-compare": "5.40.2:r0:core2_64", "perl-module-file-glob": "5.40.2:r0:core2_64", "perl-module-pod-usage": "5.40.2:r0:core2_64", "perl-module-feature": "5.40.2:r0:core2_64", "perl-module-overload-numbers": "5.40.2:r0:core2_64", "perl-module-overloading": "5.40.2:r0:core2_64", "perl-module-overload": "5.40.2:r0:core2_64", "perl-module-getopt-long-parser": "5.40.2:r0:core2_64", "perl-module-getopt-long": "5.40.2:r0:core2_64", "perl-module-threads": "5.40.2:r0:core2_64", "perl-module-file-stat": "5.40.2:r0:core2_64", "perl-module-parent": "5.40.2:r0:core2_64", "perl-module-term-cap": "5.40.2:r0:core2_64", "perl-module-re": "5.40.2:r0:core2_64", "perl-module-file-basename": "5.40.2:r0:core2_64", "perl-module-file-path": "5.40.2:r0:core2_64", "perl-module-file-copy": "5.40.2:r0:core2_64", "perl-module-file-find": "5.40.2:r0:core2_64", "perl-module-tie-hash": "5.40.2:r0:core2_64", "perl-module-posix": "5.40.2:r0:core2_64", "perl-module-file-temp": "5.40.2:r0:core2_64", "libnss-systemd2": "257.6:r0:core2_64", "util-linux-sulogin": "2.40.4:r0:core2_64", "libtool": "2.5.4:r0:core2_64", "util-linux-mkswap": "2.40.4:r0:core2_64", "iputils-arping": "20240905:r0:core2_64", "iputils-clockdiff": "20240905:r0:core2_64", "libnss-myhostname2": "257.6:r0:core2_64", "util-linux-findmnt": "2.40.4:r0:core2_64", "util-linux-fsck": "2.40.4:r0:core2_64", "util-linux-lsblk": "2.40.4:r0:core2_64", "util-linux-mount": "2.40.4:r0:core2_64", "util-linux-swapoff": "2.40.4:r0:core2_64", "util-linux-swapon": "2.40.4:r0:core2_64", "util-linux-swaponoff": "2.40.4:r0:core2_64", "util-linux-umount": "2.40.4:r0:core2_64", "openssh-ssh": "9.9p2:r0:core2_64", "util-linux-lscpu": "2.40.4:r0:core2_64", "kernel-module-dm-bio-prison-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-persistent-data-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-reject-ipv4-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kbd": "2.7.1:r0:core2_64", "pam-plugin-access": "1.7.1:r0:core2_64", "pam-plugin-deny": "1.7.1:r0:core2_64", "pam-plugin-env": "1.7.1:r0:core2_64", "pam-plugin-faildelay": "1.7.1:r0:core2_64", "pam-plugin-group": "1.7.1:r0:core2_64", "pam-plugin-mail": "1.7.1:r0:core2_64", "pam-plugin-motd": "1.7.1:r0:core2_64", "pam-plugin-namespace": "1.7.1:r0:core2_64", "pam-plugin-nologin": "1.7.1:r0:core2_64", "pam-plugin-permit": "1.7.1:r0:core2_64", "pam-plugin-rootok": "1.7.1:r0:core2_64", "pam-plugin-securetty": "1.7.1:r0:core2_64", "pam-plugin-shells": "1.7.1:r0:core2_64", "pam-plugin-warn": "1.7.1:r0:core2_64", "libpam-runtime": "1.7.1:r0:core2_64", "gdbserver": "16.2:r0:core2_64", "libabsl-civil-time2501.0.0": "20250127.1:r0:core2_64", "libabsl-crc-cpu-detect2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-severity2501.0.0": "20250127.1:r0:core2_64", "libabsl-random-distributions2501.0.0": "20250127.1:r0:core2_64", "libabsl-scoped-set-env2501.0.0": "20250127.1:r0:core2_64", "libstdc++-dev": "14.3.0:r0:core2_64", "libunwind": "1.6.2:r0:core2_64", "php": "8.4.10:r0:core2_64", "php-cli": "8.4.10:r0:core2_64", "iptables-module-ip6t-ah": "1.8.11:r0:core2_64", "iptables-module-ip6t-dnpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-dst": "1.8.11:r0:core2_64", "iptables-module-ip6t-eui64": "1.8.11:r0:core2_64", "iptables-module-ip6t-frag": "1.8.11:r0:core2_64", "iptables-module-ip6t-hbh": "1.8.11:r0:core2_64", "iptables-module-ip6t-hl": "1.8.11:r0:core2_64", "iptables-module-ip6t-icmp6": "1.8.11:r0:core2_64", "iptables-module-ip6t-ipv6header": "1.8.11:r0:core2_64", "iptables-module-ip6t-mh": "1.8.11:r0:core2_64", "iptables-module-ip6t-netmap": "1.8.11:r0:core2_64", "iptables-module-ip6t-reject": "1.8.11:r0:core2_64", "iptables-module-ip6t-rt": "1.8.11:r0:core2_64", "iptables-module-ip6t-snpt": "1.8.11:r0:core2_64", "iptables-module-ip6t-srh": "1.8.11:r0:core2_64", "iptables-module-ipt-ah": "1.8.11:r0:core2_64", "iptables-module-ipt-clusterip": "1.8.11:r0:core2_64", "iptables-module-ipt-ecn": "1.8.11:r0:core2_64", "iptables-module-ipt-icmp": "1.8.11:r0:core2_64", "iptables-module-ipt-netmap": "1.8.11:r0:core2_64", "iptables-module-ipt-realm": "1.8.11:r0:core2_64", "iptables-module-ipt-reject": "1.8.11:r0:core2_64", "iptables-module-ipt-ttl": "1.8.11:r0:core2_64", "iptables-module-ipt-ulog": "1.8.11:r0:core2_64", "iptables-module-xt-addrtype": "1.8.11:r0:core2_64", "iptables-module-xt-audit": "1.8.11:r0:core2_64", "iptables-module-xt-bpf": "1.8.11:r0:core2_64", "iptables-module-xt-cgroup": "1.8.11:r0:core2_64", "iptables-module-xt-checksum": "1.8.11:r0:core2_64", "iptables-module-xt-classify": "1.8.11:r0:core2_64", "iptables-module-xt-cluster": "1.8.11:r0:core2_64", "iptables-module-xt-comment": "1.8.11:r0:core2_64", "iptables-module-xt-connbytes": "1.8.11:r0:core2_64", "iptables-module-xt-connlimit": "1.8.11:r0:core2_64", "iptables-module-xt-connmark": "1.8.11:r0:core2_64", "iptables-module-xt-connsecmark": "1.8.11:r0:core2_64", "iptables-module-xt-conntrack": "1.8.11:r0:core2_64", "iptables-module-xt-cpu": "1.8.11:r0:core2_64", "iptables-module-xt-dccp": "1.8.11:r0:core2_64", "iptables-module-xt-devgroup": "1.8.11:r0:core2_64", "iptables-module-xt-dscp": "1.8.11:r0:core2_64", "iptables-module-xt-ecn": "1.8.11:r0:core2_64", "iptables-module-xt-esp": "1.8.11:r0:core2_64", "iptables-module-xt-hashlimit": "1.8.11:r0:core2_64", "iptables-module-xt-helper": "1.8.11:r0:core2_64", "iptables-module-xt-hmark": "1.8.11:r0:core2_64", "iptables-module-xt-idletimer": "1.8.11:r0:core2_64", "iptables-module-xt-ipcomp": "1.8.11:r0:core2_64", "iptables-module-xt-iprange": "1.8.11:r0:core2_64", "iptables-module-xt-ipvs": "1.8.11:r0:core2_64", "iptables-module-xt-led": "1.8.11:r0:core2_64", "iptables-module-xt-length": "1.8.11:r0:core2_64", "iptables-module-xt-limit": "1.8.11:r0:core2_64", "iptables-module-xt-log": "1.8.11:r0:core2_64", "iptables-module-xt-mac": "1.8.11:r0:core2_64", "iptables-module-xt-mark": "1.8.11:r0:core2_64", "iptables-module-xt-multiport": "1.8.11:r0:core2_64", "iptables-module-xt-nfacct": "1.8.11:r0:core2_64", "iptables-module-xt-nflog": "1.8.11:r0:core2_64", "iptables-module-xt-nfqueue": "1.8.11:r0:core2_64", "iptables-module-xt-osf": "1.8.11:r0:core2_64", "iptables-module-xt-owner": "1.8.11:r0:core2_64", "iptables-module-xt-physdev": "1.8.11:r0:core2_64", "iptables-module-xt-pkttype": "1.8.11:r0:core2_64", "iptables-module-xt-policy": "1.8.11:r0:core2_64", "iptables-module-xt-quota": "1.8.11:r0:core2_64", "iptables-module-xt-rateest": "1.8.11:r0:core2_64", "iptables-module-xt-recent": "1.8.11:r0:core2_64", "iptables-module-xt-rpfilter": "1.8.11:r0:core2_64", "iptables-module-xt-sctp": "1.8.11:r0:core2_64", "iptables-module-xt-secmark": "1.8.11:r0:core2_64", "iptables-module-xt-set": "1.8.11:r0:core2_64", "iptables-module-xt-socket": "1.8.11:r0:core2_64", "iptables-module-xt-statistic": "1.8.11:r0:core2_64", "iptables-module-xt-string": "1.8.11:r0:core2_64", "iptables-module-xt-synproxy": "1.8.11:r0:core2_64", "iptables-module-xt-tcp": "1.8.11:r0:core2_64", "iptables-module-xt-tcpmss": "1.8.11:r0:core2_64", "iptables-module-xt-tcpoptstrip": "1.8.11:r0:core2_64", "iptables-module-xt-tee": "1.8.11:r0:core2_64", "iptables-module-xt-time": "1.8.11:r0:core2_64", "iptables-module-xt-tos": "1.8.11:r0:core2_64", "iptables-module-xt-tproxy": "1.8.11:r0:core2_64", "iptables-module-xt-trace": "1.8.11:r0:core2_64", "iptables-module-xt-u32": "1.8.11:r0:core2_64", "iptables-module-xt-udp": "1.8.11:r0:core2_64", "bridge-utils": "1.7.1:r0:core2_64", "cpio": "2.15:r0:core2_64", "dtc": "1.7.2:r0:core2_64", "findutils": "4.10.0:r0:core2_64", "fuser": "23.7:r0:core2_64", "gnu-config": "20240823+git0+00b1592749:r0:core2_64", "gzip": "1.13:r0:core2_64", "kernel-image-bzimage-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "killall": "23.7:r0:core2_64", "ldd": "2.41+git0+e7c419a295:r0:core2_64", "libabsl-bad-any-cast-impl2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-optional-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-bad-variant-access2501.0.0": "20250127.1:r0:core2_64", "libabsl-log-entry2501.0.0": "20250127.1:r0:core2_64", "libabsl-poison2501.0.0": "20250127.1:r0:core2_64", "libabsl-string-view2501.0.0": "20250127.1:r0:core2_64", "libc-malloc-debug0": "2.41+git0+e7c419a295:r0:core2_64", "libc6-extra-nss": "2.41+git0+e7c419a295:r0:core2_64", "libc6-thread-db": "2.41+git0+e7c419a295:r0:core2_64", "libestr0": "0.1.11:r0:core2_64", "libevent-2.1-7": "2.1.12:r0:core2_64", "libevent-core-2.1-7": "2.1.12:r0:core2_64", "libfastjson4": "1.2304.0:r0:core2_64", "libfuse3-3": "3.16.2:r0:core2_64", "libgomp1": "14.3.0:r0:core2_64", "liblz1": "1.15:r0:core2_64", "file": "5.46:r0:core2_64", "rpm-build": "4.20.0:r0:core2_64", "python3-rpm": "4.20.0:r0:core2_64", "liblzo2-2": "2.10:r0:core2_64", "libmd0": "1.1.0:r0:core2_64", "libbsd0": "0.12.2:r0:core2_64", "libnetsnmphelpers40": "5.9.4:r0:core2_64", "net-snmp-libs": "5.9.4:r0:core2_64", "libonig5": "6.9.10:r0:core2_64", "libpcap1": "1.10.5:r0:core2_64", "libpipeline1": "1.5.8:r0:core2_64", "libtasn1-6": "4.20.0:r0:core2_64", "libgnutls30": "3.8.10:r0:core2_64", "libmicrohttpd12": "1.0.1:r0:core2_64", "elfutils": "0.192:r0:core2_64", "openldap": "2.6.9:r0:core2_64", "libtraceevent1": "1.8.4:r0:core2_64", "libxau6": "1.0.12:r0:core2_64", "libxdmcp6": "1.1.5:r0:core2_64", "libxcb1": "1.17.0:r0:core2_64", "libx11-6": "1.8.12:r0:core2_64", "libyaml-0-2": "0.2.5:r0:core2_64", "libmodulemd": "2.15.0:r0:core2_64", "libdnf2": "0.73.4:r0:core2_64", "net-tools-mii-tool": "2.10:r0:core2_64", "net-tools": "2.10:r0:core2_64", "openssh-scp": "9.9p2:r0:core2_64", "sed": "4.9:r0:core2_64", "groff": "1.23.0:r0:core2_64", "strace": "6.12:r0:core2_64", "unzip": "6.0:r0:core2_64", "util-linux-agetty": "2.40.4:r0:core2_64", "util-linux-getopt": "2.40.4:r0:core2_64", "lsb-release": "1.4:r0:core2_64", "util-linux-unshare": "2.40.4:r0:core2_64", "volatile-binds": "1.0:r0:noarch", "which": "2.21:r0:core2_64", "coreutils-stdbuf": "9.6:r0:core2_64", "coreutils": "9.6:r0:core2_64", "docker-moby-cli": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "iputils-tracepath": "20240905:r0:core2_64", "ldconfig": "2.41+git0+e7c419a295:r0:core2_64", "libc6-utils": "2.41+git0+e7c419a295:r0:core2_64", "libnss-db2": "2.41+git0+e7c419a295:r0:core2_64", "m4": "1.4.19:r0:core2_64", "autoconf": "2.72e:r0:core2_64", "automake": "1.17:r0:core2_64", "make": "4.4.1:r0:core2_64", "openssh-sftp-server": "9.9p2:r0:core2_64", "util-linux-fcntl-lock": "2.40.4:r0:core2_64", "v86d": "0.1.10:r0:qemux86_64", "tini": "0.19.0:r0:core2_64", "systemd-udev-rules": "257.6:r0:core2_64", "systemd-serialgetty": "1.0:r0:qemux86_64", "shadow-securetty": "4.6:r0:qemux86_64", "shadow": "4.17.3:r0:core2_64", "udev": "257.6:r0:core2_64", "cronie": "1.7.2:r0:core2_64", "ltp": "20250130:r0:core2_64", "dbus-common": "1.16.2:r0:core2_64", "dbus-1": "1.16.2:r0:core2_64", "openssh-sshd": "9.9p2:r0:core2_64", "openssh": "9.9p2:r0:core2_64", "pciutils-ids": "3.13.0:r0:core2_64", "os-release": "1.0:r0:noarch", "openssl-conf": "3.4.2:r0:core2_64", "openssl-bin": "3.4.2:r0:core2_64", "openssl": "3.4.2:r0:core2_64", "ca-certificates": "20241223:r0:noarch", "netbase": "6.5:r0:noarch", "net-snmp-mibs": "5.9.4:r0:core2_64", "net-snmp-client": "5.9.4:r0:core2_64", "linux-libc-headers-dev": "6.12:r0:core2_64", "kbd-keymaps": "2.7.1:r0:core2_64", "kbd-consolefonts": "2.7.1:r0:core2_64", "systemd-vconsole-setup": "257.6:r0:core2_64", "systemd": "257.6:r0:core2_64", "packagegroup-core-boot": "1.0:r0:qemux86_64", "systemd-analyze": "257.6:r0:core2_64", "systemd-networkd": "257.6:r0:core2_64", "libc6-dev": "2.41+git0+e7c419a295:r0:core2_64", "net-snmp": "5.9.4:r0:core2_64", "docker-moby": "28.0.1+gitbbd0a17ccc67e48d4a69393287b7fcc4f05786830+bbd0a17ccc:r0:core2_64", "phoronix-test-suite": "10.8.4:r0:noarch", "pciutils": "3.13.0:r0:core2_64", "packagegroup-core-ssh-openssh": "1.0:r0:noarch", "packagegroup-ltp": "1.0:r0:noarch", "udev-hwdb": "257.6:r0:core2_64", "nginx": "1.26.3:r0:core2_64", "ptest-runner": "2.4.5.1:r0:core2_64", "run-postinsts": "1.0:r0:noarch", "packagegroup-core-buildessential": "1.0:r0:core2_64", "iputils": "20240905:r0:core2_64", "lvm2-scripts": "2.03.31:r0:core2_64", "packagegroup-core-tools-debug": "1.0:r0:core2_64", "man-db": "2.13.0:r0:core2_64", "dnf": "4.22.0:r0:core2_64", "perf": "6.12.47:r0:qemux86_64", "nss-pam-ldapd": "0.9.12:r0:core2_64", "gnupg": "2.5.5:r0:core2_64", "wget": "1.25.0:r0:core2_64", "tcpdump": "4.99.5:r0:core2_64", "jq": "1.8.1:r0:core2_64", "fwts": "22.11.00:r0:core2_64", "stress-ng": "0.18.11:r0:core2_64", "lzop": "1.04:r0:core2_64", "fuse3-utils": "3.16.2:r0:core2_64", "rsyslog": "8.2502.0:r0:core2_64", "tmux": "3.5:r0:core2_64", "abseil-cpp": "20250127.1:r0:core2_64", "psmisc": "23.7:r0:core2_64", "kernel-image-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "iptables-modules": "1.8.11:r0:core2_64", "kernel-module-ipt-reject-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-dm-thin-pool-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-lastlog2": "2.40.4:r0:core2_64", "usbutils": "018:r0:core2_64", "fio": "3.39:r0:core2_64", "python3-pip": "25.0.1:r0:core2_64", "python3-packaging": "24.2:r0:core2_64", "python3-msgpack": "1.1.0:r0:core2_64", "sudo": "1.9.17p1:r0:core2_64", "systemd-mime": "257.6:r0:core2_64", "mc": "4.8.33:r0:core2_64", "ncurses-terminfo": "6.5:r0:core2_64", "go": "1.24.6:r0:core2_64", "yq": "4.45.1+git0+de2f77b49c_1c8d870660:r0:core2_64", "socat": "1.8.0.3:r0:core2_64", "git": "2.49.1:r0:core2_64", "libnsl3": "2.0.1:r0:core2_64", "libgirepository-1.0-1": "1.84.0:r0:core2_64", "grep": "3.11:r0:core2_64", "util-linux-setpriv": "2.40.4:r0:core2_64", "protobuf": "5.29.5:r0:core2_64", "gpgme-tool": "1.24.2:r0:core2_64", "ethtool": "6.11:r0:core2_64", "libatomic-dev": "14.3.0:r0:core2_64", "util-linux-cfdisk": "2.40.4:r0:core2_64", "util-linux-fdisk": "2.40.4:r0:core2_64", "util-linux-sfdisk": "2.40.4:r0:core2_64", "e2fsprogs-e2fsck": "1.47.1:r0:core2_64", "kernel-module-ip6table-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-masquerade-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-nat-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-ip6table-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "acl": "2.3.2:r0:core2_64", "rsync": "3.4.1:r0:core2_64", "patch": "2.7.6:r0:core2_64", "kernel-module-iptable-filter-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-mangle-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-raw-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-iptable-security-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pinentry": "1.3.1:r0:core2_64", "util-linux-irqtop": "2.40.4:r0:core2_64", "sqlite3": "3.48.0:r0:core2_64", "bzip2": "1.0.8:r0:core2_64", "ipmitool": "1.8.19:r0:core2_64", "parted": "3.6:r0:core2_64", "xz": "5.6.4:r0:core2_64", "iperf3": "3.18:r0:core2_64", "bash-completion": "2.16.0:r0:core2_64", "sg3-utils": "1.48:r0:core2_64", "screen": "5.0.0:r0:core2_64", "util-linux-swaplabel": "2.40.4:r0:core2_64", "util-linux-uuidd": "2.40.4:r0:core2_64", "util-linux-uuidgen": "2.40.4:r0:core2_64", "util-linux-uuidparse": "2.40.4:r0:core2_64", "util-linux-eject": "2.40.4:r0:core2_64", "util-linux-fstrim": "2.40.4:r0:core2_64", "util-linux-lslocks": "2.40.4:r0:core2_64", "util-linux-lsns": "2.40.4:r0:core2_64", "util-linux-mountpoint": "2.40.4:r0:core2_64", "kernel-module-xt-addrtype-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-checksum-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-conntrack-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-state-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-xt-tcpudp-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "util-linux-blkdiscard": "2.40.4:r0:core2_64", "util-linux-blkid": "2.40.4:r0:core2_64", "util-linux-findfs": "2.40.4:r0:core2_64", "util-linux-partx": "2.40.4:r0:core2_64", "util-linux-wipefs": "2.40.4:r0:core2_64", "openssl-ossl-module-legacy": "3.4.2:r0:core2_64", "util-linux-column": "2.40.4:r0:core2_64", "util-linux-fincore": "2.40.4:r0:core2_64", "util-linux-losetup": "2.40.4:r0:core2_64", "util-linux-lsclocks": "2.40.4:r0:core2_64", "util-linux-lsfd": "2.40.4:r0:core2_64", "util-linux-lsipc": "2.40.4:r0:core2_64", "util-linux-lsirq": "2.40.4:r0:core2_64", "util-linux-lslogins": "2.40.4:r0:core2_64", "util-linux-lsmem": "2.40.4:r0:core2_64", "util-linux-prlimit": "2.40.4:r0:core2_64", "util-linux-rfkill": "2.40.4:r0:core2_64", "util-linux-wdctl": "2.40.4:r0:core2_64", "util-linux-zramctl": "2.40.4:r0:core2_64", "less": "668:r0:core2_64", "ncurses": "6.5:r0:core2_64", "util-linux-cal": "2.40.4:r0:core2_64", "util-linux-dmesg": "2.40.4:r0:core2_64", "util-linux-hexdump": "2.40.4:r0:core2_64", "util-linux-more": "2.40.4:r0:core2_64", "util-linux-setterm": "2.40.4:r0:core2_64", "util-linux-ul": "2.40.4:r0:core2_64", "kernel-module-fuse-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-nf-conntrack-netlink-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-sch-fq-codel-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "kernel-module-uvesafb-6.12.47-yocto-standard": "6.12.47+git0+fb30a9a1d0_8161e9a0fe:r0:qemux86_64", "pam-plugin-umask": "1.7.1:r0:core2_64", "util-linux-chfn": "2.40.4:r0:core2_64", "util-linux-chsh": "2.40.4:r0:core2_64", "util-linux-runuser": "2.40.4:r0:core2_64", "util-linux-su": "2.40.4:r0:core2_64", "cracklib": "2.10.3:r0:core2_64", "lshw": "02.20+git0+4c6497c8b0:r0:core2_64", "util-linux-fsck.cramfs": "2.40.4:r0:core2_64", "util-linux-mkfs.cramfs": "2.40.4:r0:core2_64", "lzip": "1.25:r0:core2_64", "zstd": "1.5.7:r0:core2_64", "auto-login": "1.0.0:r0:core2_64", "brotli": "1.1.0:r0:core2_64", "busybox-udhcpc": "1.37.0:r0:core2_64", "chaosblade": "1.0.0:r0:core2_64", "diffutils": "3.11:r0:core2_64", "ed": "1.21:r0:core2_64", "libcares2": "1.34.5:r0:core2_64", "lsof": "4.99.4:r0:core2_64", "netcat": "0.7.1:r0:core2_64", "node-exporter": "1.10.2:r0:core2_64", "oath": "2.6.2:r0:core2_64", "sysstat": "12.7.7:r0:core2_64", "time": "1.9:r0:core2_64", "traceroute": "2.1.6:r0:core2_64", "util-linux-blockdev": "2.40.4:r0:core2_64", "util-linux-chrt": "2.40.4:r0:core2_64", "util-linux-fallocate": "2.40.4:r0:core2_64", "util-linux-flock": "2.40.4:r0:core2_64", "util-linux-fsfreeze": "2.40.4:r0:core2_64", "util-linux-hwclock": "2.40.4:r0:core2_64", "util-linux-ionice": "2.40.4:r0:core2_64", "util-linux-ipcrm": "2.40.4:r0:core2_64", "util-linux-ipcs": "2.40.4:r0:core2_64", "util-linux-kill": "2.40.4:r0:core2_64", "util-linux-last": "2.40.4:r0:core2_64", "util-linux-logger": "2.40.4:r0:core2_64", "util-linux-mcookie": "2.40.4:r0:core2_64", "util-linux-mesg": "2.40.4:r0:core2_64", "util-linux-nologin": "2.40.4:r0:core2_64", "util-linux-nsenter": "2.40.4:r0:core2_64", "util-linux-pivot-root": "2.40.4:r0:core2_64", "util-linux-readprofile": "2.40.4:r0:core2_64", "util-linux-renice": "2.40.4:r0:core2_64", "util-linux-rev": "2.40.4:r0:core2_64", "util-linux-rtcwake": "2.40.4:r0:core2_64", "util-linux-scriptreplay": "2.40.4:r0:core2_64", "util-linux-setsid": "2.40.4:r0:core2_64", "util-linux-switch-root": "2.40.4:r0:core2_64", "util-linux-taskset": "2.40.4:r0:core2_64", "util-linux-utmpdump": "2.40.4:r0:core2_64", "util-linux-wall": "2.40.4:r0:core2_64", "dmidecode": "3.6:r0:core2_64", "lsscsi": "0.32:r0:core2_64", "util-linux-addpart": "2.40.4:r0:core2_64", "util-linux-blkpr": "2.40.4:r0:core2_64", "util-linux-blkzone": "2.40.4:r0:core2_64", "util-linux-chcpu": "2.40.4:r0:core2_64", "util-linux-chmem": "2.40.4:r0:core2_64", "util-linux-choom": "2.40.4:r0:core2_64", "util-linux-col": "2.40.4:r0:core2_64", "util-linux-colcrt": "2.40.4:r0:core2_64", "util-linux-colrm": "2.40.4:r0:core2_64", "util-linux-ctrlaltdel": "2.40.4:r0:core2_64", "util-linux-delpart": "2.40.4:r0:core2_64", "util-linux-enosys": "2.40.4:r0:core2_64", "util-linux-exch": "2.40.4:r0:core2_64", "util-linux-fadvise": "2.40.4:r0:core2_64", "util-linux-hardlink": "2.40.4:r0:core2_64", "util-linux-ipcmk": "2.40.4:r0:core2_64", "util-linux-isosize": "2.40.4:r0:core2_64", "util-linux-ldattach": "2.40.4:r0:core2_64", "util-linux-look": "2.40.4:r0:core2_64", "util-linux-mkfs": "2.40.4:r0:core2_64", "util-linux-namei": "2.40.4:r0:core2_64", "util-linux-pipesz": "2.40.4:r0:core2_64", "util-linux-rename": "2.40.4:r0:core2_64", "util-linux-resizepart": "2.40.4:r0:core2_64", "util-linux-script": "2.40.4:r0:core2_64", "util-linux-scriptlive": "2.40.4:r0:core2_64", "util-linux-setarch": "2.40.4:r0:core2_64", "util-linux-setpgid": "2.40.4:r0:core2_64", "util-linux-uclampset": "2.40.4:r0:core2_64", "util-linux-waitpid": "2.40.4:r0:core2_64", "util-linux-whereis": "2.40.4:r0:core2_64", "util-linux-write": "2.40.4:r0:core2_64", "zip": "3.0:r0:core2_64", "systemd-conf": "1.0:r0:qemux86_64", "libgcc-s-dev": "14.3.0:r0:core2_64", "kbd-keymaps-pine": "2.7.1:r0:core2_64"} Linux 6.12.47.yocto.standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64 unknown GNU/Linux {"CONFIG_CC_VERSION_TEXT": "\\"x86_64-poky-linux-gcc (GCC) 14.3.0\\"", "CONFIG_CC_IS_GCC": "y", "CONFIG_GCC_VERSION": "140300", "CONFIG_CLANG_VERSION": "0", "CONFIG_AS_IS_GNU": "y", "CONFIG_AS_VERSION": "24400", "CONFIG_LD_IS_BFD": "y", "CONFIG_LD_VERSION": "24400", "CONFIG_LLD_VERSION": "0", "CONFIG_RUSTC_VERSION": "0", "CONFIG_RUSTC_LLVM_VERSION": "0", "CONFIG_CC_HAS_ASM_GOTO_OUTPUT": "y", "CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT": "y", "CONFIG_TOOLS_SUPPORT_RELR": "y", "CONFIG_CC_HAS_ASM_INLINE": "y", "CONFIG_CC_HAS_NO_PROFILE_FN_ATTR": "y", "CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY": "y", "CONFIG_PAHOLE_VERSION": "0", "CONFIG_IRQ_WORK": "y", "CONFIG_BUILDTIME_TABLE_SORT": "y", "CONFIG_THREAD_INFO_IN_TASK": "y", "CONFIG_INIT_ENV_ARG_LIMIT": "32", "CONFIG_COMPILE_TEST": "not set", "CONFIG_WERROR": "not set", "CONFIG_LOCALVERSION": "\\"-yocto-standard\\"", "CONFIG_LOCALVERSION_AUTO": "not set", "CONFIG_BUILD_SALT": "\\"\\"", "CONFIG_HAVE_KERNEL_GZIP": "y", "CONFIG_HAVE_KERNEL_BZIP2": "y", "CONFIG_HAVE_KERNEL_LZMA": "y", "CONFIG_HAVE_KERNEL_XZ": "y", "CONFIG_HAVE_KERNEL_LZO": "y", "CONFIG_HAVE_KERNEL_LZ4": "y", "CONFIG_HAVE_KERNEL_ZSTD": "y", "CONFIG_KERNEL_GZIP": "y", "CONFIG_KERNEL_BZIP2": "not set", "CONFIG_KERNEL_LZMA": "not set", "CONFIG_KERNEL_XZ": "not set", "CONFIG_KERNEL_LZO": "not set", "CONFIG_KERNEL_LZ4": "not set", "CONFIG_KERNEL_ZSTD": "not set", "CONFIG_DEFAULT_INIT": "\\"\\"", "CONFIG_DEFAULT_HOSTNAME": "\\"(none)\\"", "CONFIG_SYSVIPC": "y", "CONFIG_SYSVIPC_SYSCTL": "y", "CONFIG_SYSVIPC_COMPAT": "y", "CONFIG_POSIX_MQUEUE": "y", "CONFIG_POSIX_MQUEUE_SYSCTL": "y", "CONFIG_WATCH_QUEUE": "not set", "CONFIG_CROSS_MEMORY_ATTACH": "y", "CONFIG_USELIB": "not set", "CONFIG_AUDIT": "not set", "CONFIG_HAVE_ARCH_AUDITSYSCALL": "y", "CONFIG_GENERIC_IRQ_PROBE": "y", "CONFIG_GENERIC_IRQ_SHOW": "y", "CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK": "y", "CONFIG_GENERIC_PENDING_IRQ": "y", "CONFIG_GENERIC_IRQ_MIGRATION": "y", "CONFIG_HARDIRQS_SW_RESEND": "y", "CONFIG_IRQ_DOMAIN": "y", "CONFIG_IRQ_SIM": "y", "CONFIG_IRQ_DOMAIN_HIERARCHY": "y", "CONFIG_GENERIC_MSI_IRQ": "y", "CONFIG_IRQ_MSI_IOMMU": "y", "CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR": "y", "CONFIG_GENERIC_IRQ_RESERVATION_MODE": "y", "CONFIG_IRQ_FORCED_THREADING": "y", "CONFIG_SPARSE_IRQ": "y", "CONFIG_GENERIC_IRQ_DEBUGFS": "not set", "CONFIG_CLOCKSOURCE_WATCHDOG": "y", "CONFIG_ARCH_CLOCKSOURCE_INIT": "y", "CONFIG_GENERIC_TIME_VSYSCALL": "y", "CONFIG_GENERIC_CLOCKEVENTS": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST": "y", "CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE": "y", "CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST": "y", "CONFIG_GENERIC_CMOS_UPDATE": "y", "CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_POSIX_CPU_TIMERS_TASK_WORK": "y", "CONFIG_CONTEXT_TRACKING": "y", "CONFIG_CONTEXT_TRACKING_IDLE": "y", "CONFIG_TICK_ONESHOT": "y", "CONFIG_NO_HZ_COMMON": "y", "CONFIG_HZ_PERIODIC": "not set", "CONFIG_NO_HZ_IDLE": "y", "CONFIG_NO_HZ_FULL": "not set", "CONFIG_NO_HZ": "y", "CONFIG_HIGH_RES_TIMERS": "y", "CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US": "125", "CONFIG_BPF": "y", "CONFIG_HAVE_EBPF_JIT": "y", "CONFIG_ARCH_WANT_DEFAULT_BPF_JIT": "y", "CONFIG_BPF_SYSCALL": "y", "CONFIG_BPF_JIT": "y", "CONFIG_BPF_JIT_ALWAYS_ON": "not set", "CONFIG_BPF_JIT_DEFAULT_ON": "y", "CONFIG_BPF_UNPRIV_DEFAULT_OFF": "y", "CONFIG_BPF_PRELOAD": "not set", "CONFIG_BPF_LSM": "not set", "CONFIG_PREEMPT_BUILD": "y", "CONFIG_PREEMPT_NONE": "not set", "CONFIG_PREEMPT_VOLUNTARY": "not set", "CONFIG_PREEMPT": "y", "CONFIG_PREEMPT_COUNT": "y", "CONFIG_PREEMPTION": "y", "CONFIG_PREEMPT_DYNAMIC": "y", "CONFIG_SCHED_CORE": "not set", "CONFIG_TICK_CPU_ACCOUNTING": "y", "CONFIG_VIRT_CPU_ACCOUNTING_GEN": "not set", "CONFIG_IRQ_TIME_ACCOUNTING": "not set", "CONFIG_BSD_PROCESS_ACCT": "y", "CONFIG_BSD_PROCESS_ACCT_V3": "y", "CONFIG_TASKSTATS": "y", "CONFIG_TASK_DELAY_ACCT": "y", "CONFIG_TASK_XACCT": "y", "CONFIG_TASK_IO_ACCOUNTING": "y", "CONFIG_PSI": "not set", "CONFIG_CPU_ISOLATION": "y", "CONFIG_TREE_RCU": "y", "CONFIG_PREEMPT_RCU": "y", "CONFIG_RCU_EXPERT": "not set", "CONFIG_TREE_SRCU": "y", "CONFIG_TASKS_RCU_GENERIC": "y", "CONFIG_NEED_TASKS_RCU": "y", "CONFIG_TASKS_RCU": "y", "CONFIG_TASKS_RUDE_RCU": "y", "CONFIG_TASKS_TRACE_RCU": "y", "CONFIG_RCU_STALL_COMMON": "y", "CONFIG_RCU_NEED_SEGCBLIST": "y", "CONFIG_IKCONFIG": "y", "CONFIG_IKCONFIG_PROC": "y", "CONFIG_IKHEADERS": "not set", "CONFIG_LOG_BUF_SHIFT": "17", "CONFIG_LOG_CPU_MAX_BUF_SHIFT": "12", "CONFIG_PRINTK_INDEX": "not set", "CONFIG_HAVE_UNSTABLE_SCHED_CLOCK": "y", "CONFIG_UCLAMP_TASK": "not set", "CONFIG_ARCH_SUPPORTS_NUMA_BALANCING": "y", "CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH": "y", "CONFIG_CC_HAS_INT128": "y", "CONFIG_CC_IMPLICIT_FALLTHROUGH": "\\"-Wimplicit-fallthrough=5\\"", "CONFIG_GCC10_NO_ARRAY_BOUNDS": "y", "CONFIG_CC_NO_ARRAY_BOUNDS": "y", "CONFIG_GCC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_CC_NO_STRINGOP_OVERFLOW": "y", "CONFIG_ARCH_SUPPORTS_INT128": "y", "CONFIG_SLAB_OBJ_EXT": "y", "CONFIG_CGROUPS": "y", "CONFIG_PAGE_COUNTER": "y", "CONFIG_CGROUP_FAVOR_DYNMODS": "not set", "CONFIG_MEMCG": "y", "CONFIG_MEMCG_V1": "not set", "CONFIG_BLK_CGROUP": "y", "CONFIG_CGROUP_WRITEBACK": "y", "CONFIG_CGROUP_SCHED": "y", "CONFIG_GROUP_SCHED_WEIGHT": "y", "CONFIG_FAIR_GROUP_SCHED": "y", "CONFIG_CFS_BANDWIDTH": "not set", "CONFIG_RT_GROUP_SCHED": "not set", "CONFIG_SCHED_MM_CID": "y", "CONFIG_CGROUP_PIDS": "y", "CONFIG_CGROUP_RDMA": "not set", "CONFIG_CGROUP_FREEZER": "y", "CONFIG_CPUSETS": "y", "CONFIG_CPUSETS_V1": "not set", "CONFIG_PROC_PID_CPUSET": "y", "CONFIG_CGROUP_DEVICE": "y", "CONFIG_CGROUP_CPUACCT": "y", "CONFIG_CGROUP_PERF": "y", "CONFIG_CGROUP_BPF": "y", "CONFIG_CGROUP_MISC": "not set", "CONFIG_CGROUP_DEBUG": "y", "CONFIG_SOCK_CGROUP_DATA": "y", "CONFIG_NAMESPACES": "y", "CONFIG_UTS_NS": "y", "CONFIG_TIME_NS": "y", "CONFIG_IPC_NS": "y", "CONFIG_USER_NS": "y", "CONFIG_PID_NS": "y", "CONFIG_NET_NS": "y", "CONFIG_CHECKPOINT_RESTORE": "y", "CONFIG_SCHED_AUTOGROUP": "not set", "CONFIG_RELAY": "y", "CONFIG_BLK_DEV_INITRD": "y", "CONFIG_INITRAMFS_SOURCE": "\\"\\"", "CONFIG_RD_GZIP": "y", "CONFIG_RD_BZIP2": "y", "CONFIG_RD_LZMA": "y", "CONFIG_RD_XZ": "y", "CONFIG_RD_LZO": "y", "CONFIG_RD_LZ4": "y", "CONFIG_RD_ZSTD": "y", "CONFIG_BOOT_CONFIG": "not set", "CONFIG_INITRAMFS_PRESERVE_MTIME": "y", "CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE": "y", "CONFIG_CC_OPTIMIZE_FOR_SIZE": "not set", "CONFIG_LD_ORPHAN_WARN": "y", "CONFIG_LD_ORPHAN_WARN_LEVEL": "\\"warn\\"", "CONFIG_SYSCTL": "y", "CONFIG_HAVE_UID16": "y", "CONFIG_SYSCTL_EXCEPTION_TRACE": "y", "CONFIG_HAVE_PCSPKR_PLATFORM": "y", "CONFIG_EXPERT": "not set", "CONFIG_UID16": "y", "CONFIG_MULTIUSER": "y", "CONFIG_SGETMASK_SYSCALL": "y", "CONFIG_SYSFS_SYSCALL": "y", "CONFIG_FHANDLE": "y", "CONFIG_POSIX_TIMERS": "y", "CONFIG_PRINTK": "y", "CONFIG_BUG": "y", "CONFIG_ELF_CORE": "y", "CONFIG_PCSPKR_PLATFORM": "y", "CONFIG_FUTEX": "y", "CONFIG_FUTEX_PI": "y", "CONFIG_EPOLL": "y", "CONFIG_SIGNALFD": "y", "CONFIG_TIMERFD": "y", "CONFIG_EVENTFD": "y", "CONFIG_SHMEM": "y", "CONFIG_AIO": "y", "CONFIG_IO_URING": "y", "CONFIG_ADVISE_SYSCALLS": "y", "CONFIG_MEMBARRIER": "y", "CONFIG_KCMP": "y", "CONFIG_RSEQ": "y", "CONFIG_CACHESTAT_SYSCALL": "y", "CONFIG_KALLSYMS": "y", "CONFIG_KALLSYMS_SELFTEST": "not set", "CONFIG_KALLSYMS_ALL": "not set", "CONFIG_KALLSYMS_ABSOLUTE_PERCPU": "y", "CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE": "y", "CONFIG_HAVE_PERF_EVENTS": "y", "CONFIG_PERF_EVENTS": "y", "CONFIG_DEBUG_PERF_USE_VMALLOC": "not set", "CONFIG_SYSTEM_DATA_VERIFICATION": "y", "CONFIG_PROFILING": "not set", "CONFIG_TRACEPOINTS": "y", "CONFIG_VMCORE_INFO": "y", "CONFIG_KEXEC": "not set", "CONFIG_KEXEC_FILE": "not set", "CONFIG_64BIT": "y", "CONFIG_X86_64": "y", "CONFIG_X86": "y", "CONFIG_INSTRUCTION_DECODER": "y", "CONFIG_OUTPUT_FORMAT": "\\"elf64-x86-64\\"", "CONFIG_LOCKDEP_SUPPORT": "y", "CONFIG_STACKTRACE_SUPPORT": "y", "CONFIG_MMU": "y", "CONFIG_ARCH_MMAP_RND_BITS_MIN": "28", "CONFIG_ARCH_MMAP_RND_BITS_MAX": "32", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN": "8", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX": "16", "CONFIG_GENERIC_ISA_DMA": "y", "CONFIG_GENERIC_BUG": "y", "CONFIG_GENERIC_BUG_RELATIVE_POINTERS": "y", "CONFIG_ARCH_MAY_HAVE_PC_FDC": "y", "CONFIG_GENERIC_CALIBRATE_DELAY": "y", "CONFIG_ARCH_HAS_CPU_RELAX": "y", "CONFIG_ARCH_HIBERNATION_POSSIBLE": "y", "CONFIG_ARCH_SUSPEND_POSSIBLE": "y", "CONFIG_AUDIT_ARCH": "y", "CONFIG_HAVE_INTEL_TXT": "y", "CONFIG_X86_64_SMP": "y", "CONFIG_ARCH_SUPPORTS_UPROBES": "y", "CONFIG_FIX_EARLYCON_MEM": "y", "CONFIG_PGTABLE_LEVELS": "5", "CONFIG_CC_HAS_SANE_STACKPROTECTOR": "y", "CONFIG_SMP": "y", "CONFIG_X86_X2APIC": "y", "CONFIG_X86_POSTED_MSI": "not set", "CONFIG_X86_MPPARSE": "y", "CONFIG_X86_CPU_RESCTRL": "not set", "CONFIG_X86_FRED": "not set", "CONFIG_X86_EXTENDED_PLATFORM": "y", "CONFIG_X86_VSMP": "not set", "CONFIG_X86_GOLDFISH": "not set", "CONFIG_X86_INTEL_MID": "not set", "CONFIG_X86_INTEL_LPSS": "not set", "CONFIG_X86_AMD_PLATFORM_DEVICE": "y", "CONFIG_IOSF_MBI": "y", "CONFIG_IOSF_MBI_DEBUG": "not set", "CONFIG_X86_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_SCHED_OMIT_FRAME_POINTER": "y", "CONFIG_HYPERVISOR_GUEST": "y", "CONFIG_PARAVIRT": "y", "CONFIG_PARAVIRT_DEBUG": "not set", "CONFIG_PARAVIRT_SPINLOCKS": "not set", "CONFIG_X86_HV_CALLBACK_VECTOR": "y", "CONFIG_XEN": "not set", "CONFIG_KVM_GUEST": "y", "CONFIG_ARCH_CPUIDLE_HALTPOLL": "y", "CONFIG_PVH": "not set", "CONFIG_PARAVIRT_TIME_ACCOUNTING": "not set", "CONFIG_PARAVIRT_CLOCK": "y", "CONFIG_JAILHOUSE_GUEST": "not set", "CONFIG_ACRN_GUEST": "not set", "CONFIG_INTEL_TDX_GUEST": "not set", "CONFIG_MK8": "not set", "CONFIG_MPSC": "not set", "CONFIG_MCORE2": "y", "CONFIG_MATOM": "not set", "CONFIG_GENERIC_CPU": "not set", "CONFIG_X86_INTERNODE_CACHE_SHIFT": "6", "CONFIG_X86_L1_CACHE_SHIFT": "6", "CONFIG_X86_INTEL_USERCOPY": "y", "CONFIG_X86_USE_PPRO_CHECKSUM": "y", "CONFIG_X86_P6_NOP": "y", "CONFIG_X86_TSC": "y", "CONFIG_X86_HAVE_PAE": "y", "CONFIG_X86_CMPXCHG64": "y", "CONFIG_X86_CMOV": "y", "CONFIG_X86_MINIMUM_CPU_FAMILY": "64", "CONFIG_X86_DEBUGCTLMSR": "y", "CONFIG_IA32_FEAT_CTL": "y", "CONFIG_X86_VMX_FEATURE_NAMES": "y", "CONFIG_CPU_SUP_INTEL": "y", "CONFIG_CPU_SUP_AMD": "y", "CONFIG_CPU_SUP_HYGON": "y", "CONFIG_CPU_SUP_CENTAUR": "y", "CONFIG_CPU_SUP_ZHAOXIN": "y", "CONFIG_HPET_TIMER": "y", "CONFIG_HPET_EMULATE_RTC": "y", "CONFIG_DMI": "y", "CONFIG_GART_IOMMU": "not set", "CONFIG_BOOT_VESA_SUPPORT": "y", "CONFIG_MAXSMP": "not set", "CONFIG_NR_CPUS_RANGE_BEGIN": "2", "CONFIG_NR_CPUS_RANGE_END": "512", "CONFIG_NR_CPUS_DEFAULT": "64", "CONFIG_NR_CPUS": "64", "CONFIG_SCHED_CLUSTER": "y", "CONFIG_SCHED_SMT": "y", "CONFIG_SCHED_MC": "y", "CONFIG_SCHED_MC_PRIO": "y", "CONFIG_X86_LOCAL_APIC": "y", "CONFIG_ACPI_MADT_WAKEUP": "y", "CONFIG_X86_IO_APIC": "y", "CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS": "not set", "CONFIG_X86_MCE": "y", "CONFIG_X86_MCELOG_LEGACY": "not set", "CONFIG_X86_MCE_INTEL": "y", "CONFIG_X86_MCE_AMD": "y", "CONFIG_X86_MCE_THRESHOLD": "y", "CONFIG_X86_MCE_INJECT": "not set", "CONFIG_PERF_EVENTS_INTEL_UNCORE": "y", "CONFIG_PERF_EVENTS_INTEL_RAPL": "y", "CONFIG_PERF_EVENTS_INTEL_CSTATE": "y", "CONFIG_PERF_EVENTS_AMD_POWER": "not set", "CONFIG_PERF_EVENTS_AMD_UNCORE": "y", "CONFIG_PERF_EVENTS_AMD_BRS": "not set", "CONFIG_X86_16BIT": "y", "CONFIG_X86_ESPFIX64": "y", "CONFIG_X86_VSYSCALL_EMULATION": "y", "CONFIG_X86_IOPL_IOPERM": "y", "CONFIG_MICROCODE": "y", "CONFIG_MICROCODE_LATE_LOADING": "not set", "CONFIG_X86_MSR": "y", "CONFIG_X86_CPUID": "y", "CONFIG_X86_5LEVEL": "y", "CONFIG_X86_DIRECT_GBPAGES": "y", "CONFIG_X86_CPA_STATISTICS": "not set", "CONFIG_AMD_MEM_ENCRYPT": "not set", "CONFIG_NUMA": "not set", "CONFIG_ARCH_SPARSEMEM_ENABLE": "y", "CONFIG_ARCH_SPARSEMEM_DEFAULT": "y", "CONFIG_ARCH_PROC_KCORE_TEXT": "y", "CONFIG_ILLEGAL_POINTER_VALUE": "0xdead000000000000", "CONFIG_X86_PMEM_LEGACY": "not set", "CONFIG_X86_CHECK_BIOS_CORRUPTION": "y", "CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK": "y", "CONFIG_MTRR": "y", "CONFIG_MTRR_SANITIZER": "y", "CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT": "0", "CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT": "1", "CONFIG_X86_PAT": "y", "CONFIG_X86_UMIP": "y", "CONFIG_CC_HAS_IBT": "y", "CONFIG_X86_CET": "y", "CONFIG_X86_KERNEL_IBT": "y", "CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS": "y", "CONFIG_ARCH_PKEY_BITS": "4", "CONFIG_X86_INTEL_TSX_MODE_OFF": "y", "CONFIG_X86_INTEL_TSX_MODE_ON": "not set", "CONFIG_X86_INTEL_TSX_MODE_AUTO": "not set", "CONFIG_X86_SGX": "not set", "CONFIG_X86_USER_SHADOW_STACK": "not set", "CONFIG_EFI": "y", "CONFIG_EFI_STUB": "y", "CONFIG_EFI_HANDOVER_PROTOCOL": "y", "CONFIG_EFI_MIXED": "not set", "CONFIG_HZ_100": "not set", "CONFIG_HZ_250": "not set", "CONFIG_HZ_300": "not set", "CONFIG_HZ_1000": "y", "CONFIG_HZ": "1000", "CONFIG_SCHED_HRTICK": "y", "CONFIG_ARCH_SUPPORTS_KEXEC": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_FILE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_PURGATORY": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_SIG_FORCE": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_BZIMAGE_VERIFY_SIG": "y", "CONFIG_ARCH_SUPPORTS_KEXEC_JUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_DUMP": "y", "CONFIG_ARCH_DEFAULT_CRASH_DUMP": "y", "CONFIG_ARCH_SUPPORTS_CRASH_HOTPLUG": "y", "CONFIG_PHYSICAL_START": "0x1000000", "CONFIG_RELOCATABLE": "y", "CONFIG_RANDOMIZE_BASE": "y", "CONFIG_X86_NEED_RELOCS": "y", "CONFIG_PHYSICAL_ALIGN": "0x200000", "CONFIG_DYNAMIC_MEMORY_LAYOUT": "y", "CONFIG_RANDOMIZE_MEMORY": "y", "CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING": "0x0", "CONFIG_HOTPLUG_CPU": "y", "CONFIG_COMPAT_VDSO": "not set", "CONFIG_LEGACY_VSYSCALL_XONLY": "y", "CONFIG_LEGACY_VSYSCALL_NONE": "not set", "CONFIG_CMDLINE_BOOL": "not set", "CONFIG_MODIFY_LDT_SYSCALL": "y", "CONFIG_STRICT_SIGALTSTACK_SIZE": "not set", "CONFIG_HAVE_LIVEPATCH": "y", "CONFIG_CC_HAS_NAMED_AS": "y", "CONFIG_CC_HAS_NAMED_AS_FIXED_SANITIZERS": "y", "CONFIG_USE_X86_SEG_SUPPORT": "y", "CONFIG_CC_HAS_SLS": "y", "CONFIG_CC_HAS_RETURN_THUNK": "y", "CONFIG_CC_HAS_ENTRY_PADDING": "y", "CONFIG_FUNCTION_PADDING_CFI": "11", "CONFIG_FUNCTION_PADDING_BYTES": "16", "CONFIG_CALL_PADDING": "y", "CONFIG_HAVE_CALL_THUNKS": "y", "CONFIG_CALL_THUNKS": "y", "CONFIG_PREFIX_SYMBOLS": "y", "CONFIG_CPU_MITIGATIONS": "y", "CONFIG_MITIGATION_PAGE_TABLE_ISOLATION": "y", "CONFIG_MITIGATION_RETPOLINE": "y", "CONFIG_MITIGATION_RETHUNK": "y", "CONFIG_MITIGATION_UNRET_ENTRY": "y", "CONFIG_MITIGATION_CALL_DEPTH_TRACKING": "y", "CONFIG_CALL_THUNKS_DEBUG": "not set", "CONFIG_MITIGATION_IBPB_ENTRY": "y", "CONFIG_MITIGATION_IBRS_ENTRY": "y", "CONFIG_MITIGATION_SRSO": "y", "CONFIG_MITIGATION_SLS": "not set", "CONFIG_MITIGATION_GDS": "y", "CONFIG_MITIGATION_RFDS": "y", "CONFIG_MITIGATION_SPECTRE_BHI": "y", "CONFIG_MITIGATION_MDS": "y", "CONFIG_MITIGATION_TAA": "y", "CONFIG_MITIGATION_MMIO_STALE_DATA": "y", "CONFIG_MITIGATION_L1TF": "y", "CONFIG_MITIGATION_RETBLEED": "y", "CONFIG_MITIGATION_SPECTRE_V1": "y", "CONFIG_MITIGATION_SPECTRE_V2": "y", "CONFIG_MITIGATION_SRBDS": "y", "CONFIG_MITIGATION_SSB": "y", "CONFIG_MITIGATION_ITS": "y", "CONFIG_MITIGATION_TSA": "y", "CONFIG_ARCH_HAS_ADD_PAGES": "y", "CONFIG_SUSPEND": "y", "CONFIG_SUSPEND_FREEZER": "y", "CONFIG_HIBERNATION": "not set", "CONFIG_PM_SLEEP": "y", "CONFIG_PM_SLEEP_SMP": "y", "CONFIG_PM_AUTOSLEEP": "not set", "CONFIG_PM_USERSPACE_AUTOSLEEP": "not set", "CONFIG_PM_WAKELOCKS": "not set", "CONFIG_PM": "y", "CONFIG_PM_DEBUG": "y", "CONFIG_PM_ADVANCED_DEBUG": "y", "CONFIG_PM_TEST_SUSPEND": "not set", "CONFIG_PM_SLEEP_DEBUG": "y", "CONFIG_PM_TRACE_RTC": "not set", "CONFIG_PM_CLK": "y", "CONFIG_WQ_POWER_EFFICIENT_DEFAULT": "not set", "CONFIG_ENERGY_MODEL": "not set", "CONFIG_ARCH_SUPPORTS_ACPI": "y", "CONFIG_ACPI": "y", "CONFIG_ACPI_LEGACY_TABLES_LOOKUP": "y", "CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC": "y", "CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT": "y", "CONFIG_ACPI_THERMAL_LIB": "y", "CONFIG_ACPI_DEBUGGER": "not set", "CONFIG_ACPI_SPCR_TABLE": "y", "CONFIG_ACPI_FPDT": "not set", "CONFIG_ACPI_LPIT": "y", "CONFIG_ACPI_SLEEP": "y", "CONFIG_ACPI_REV_OVERRIDE_POSSIBLE": "y", "CONFIG_ACPI_EC_DEBUGFS": "not set", "CONFIG_ACPI_AC": "y", "CONFIG_ACPI_BATTERY": "y", "CONFIG_ACPI_BUTTON": "y", "CONFIG_ACPI_VIDEO": "m", "CONFIG_ACPI_FAN": "y", "CONFIG_ACPI_TAD": "not set", "CONFIG_ACPI_DOCK": "not set", "CONFIG_ACPI_CPU_FREQ_PSS": "y", "CONFIG_ACPI_PROCESSOR_CSTATE": "y", "CONFIG_ACPI_PROCESSOR_IDLE": "y", "CONFIG_ACPI_CPPC_LIB": "y", "CONFIG_ACPI_PROCESSOR": "y", "CONFIG_ACPI_HOTPLUG_CPU": "y", "CONFIG_ACPI_PROCESSOR_AGGREGATOR": "not set", "CONFIG_ACPI_THERMAL": "y", "CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_TABLE_UPGRADE": "y", "CONFIG_ACPI_DEBUG": "not set", "CONFIG_ACPI_PCI_SLOT": "not set", "CONFIG_ACPI_CONTAINER": "y", "CONFIG_ACPI_HOTPLUG_IOAPIC": "y", "CONFIG_ACPI_SBS": "not set", "CONFIG_ACPI_HED": "not set", "CONFIG_ACPI_BGRT": "not set", "CONFIG_ACPI_NHLT": "y", "CONFIG_ACPI_NFIT": "not set", "CONFIG_HAVE_ACPI_APEI": "y", "CONFIG_HAVE_ACPI_APEI_NMI": "y", "CONFIG_ACPI_APEI": "not set", "CONFIG_ACPI_DPTF": "not set", "CONFIG_ACPI_CONFIGFS": "not set", "CONFIG_ACPI_PFRUT": "not set", "CONFIG_ACPI_PCC": "y", "CONFIG_ACPI_FFH": "not set", "CONFIG_PMIC_OPREGION": "not set", "CONFIG_ACPI_PRMT": "y", "CONFIG_X86_PM_TIMER": "y", "CONFIG_CPU_FREQ": "y", "CONFIG_CPU_FREQ_GOV_ATTR_SET": "y", "CONFIG_CPU_FREQ_GOV_COMMON": "y", "CONFIG_CPU_FREQ_STAT": "y", "CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL": "y", "CONFIG_CPU_FREQ_GOV_PERFORMANCE": "y", "CONFIG_CPU_FREQ_GOV_POWERSAVE": "not set", "CONFIG_CPU_FREQ_GOV_USERSPACE": "not set", "CONFIG_CPU_FREQ_GOV_ONDEMAND": "y", "CONFIG_CPU_FREQ_GOV_CONSERVATIVE": "not set", "CONFIG_CPU_FREQ_GOV_SCHEDUTIL": "y", "CONFIG_X86_INTEL_PSTATE": "y", "CONFIG_X86_PCC_CPUFREQ": "not set", "CONFIG_X86_AMD_PSTATE": "y", "CONFIG_X86_AMD_PSTATE_DEFAULT_MODE": "3", "CONFIG_X86_AMD_PSTATE_UT": "not set", "CONFIG_X86_ACPI_CPUFREQ": "y", "CONFIG_X86_ACPI_CPUFREQ_CPB": "y", "CONFIG_X86_POWERNOW_K8": "not set", "CONFIG_X86_AMD_FREQ_SENSITIVITY": "not set", "CONFIG_X86_SPEEDSTEP_CENTRINO": "not set", "CONFIG_X86_P4_CLOCKMOD": "not set", "CONFIG_CPU_IDLE": "y", "CONFIG_CPU_IDLE_GOV_LADDER": "not set", "CONFIG_CPU_IDLE_GOV_MENU": "y", "CONFIG_CPU_IDLE_GOV_TEO": "not set", "CONFIG_CPU_IDLE_GOV_HALTPOLL": "y", "CONFIG_HALTPOLL_CPUIDLE": "y", "CONFIG_INTEL_IDLE": "y", "CONFIG_PCI_DIRECT": "y", "CONFIG_PCI_MMCONFIG": "y", "CONFIG_MMCONF_FAM10H": "y", "CONFIG_ISA_DMA_API": "y", "CONFIG_QEMUX86": "not set", "CONFIG_AMD_NB": "y", "CONFIG_IA32_EMULATION": "y", "CONFIG_IA32_EMULATION_DEFAULT_DISABLED": "not set", "CONFIG_X86_X32_ABI": "not set", "CONFIG_COMPAT_32": "y", "CONFIG_COMPAT": "y", "CONFIG_COMPAT_FOR_U64_ALIGNMENT": "y", "CONFIG_VIRTUALIZATION": "y", "CONFIG_KVM": "not set", "CONFIG_AS_AVX512": "y", "CONFIG_AS_SHA1_NI": "y", "CONFIG_AS_SHA256_NI": "y", "CONFIG_AS_TPAUSE": "y", "CONFIG_AS_GFNI": "y", "CONFIG_AS_VAES": "y", "CONFIG_AS_VPCLMULQDQ": "y", "CONFIG_AS_WRUSS": "y", "CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS": "y", "CONFIG_HOTPLUG_SMT": "y", "CONFIG_HOTPLUG_CORE_SYNC": "y", "CONFIG_HOTPLUG_CORE_SYNC_DEAD": "y", "CONFIG_HOTPLUG_CORE_SYNC_FULL": "y", "CONFIG_HOTPLUG_SPLIT_STARTUP": "y", "CONFIG_HOTPLUG_PARALLEL": "y", "CONFIG_GENERIC_ENTRY": "y", "CONFIG_KPROBES": "y", "CONFIG_JUMP_LABEL": "not set", "CONFIG_STATIC_CALL_SELFTEST": "not set", "CONFIG_OPTPROBES": "y", "CONFIG_KPROBES_ON_FTRACE": "y", "CONFIG_UPROBES": "y", "CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS": "y", "CONFIG_ARCH_USE_BUILTIN_BSWAP": "y", "CONFIG_KRETPROBES": "y", "CONFIG_KRETPROBE_ON_RETHOOK": "y", "CONFIG_HAVE_IOREMAP_PROT": "y", "CONFIG_HAVE_KPROBES": "y", "CONFIG_HAVE_KRETPROBES": "y", "CONFIG_HAVE_OPTPROBES": "y", "CONFIG_HAVE_KPROBES_ON_FTRACE": "y", "CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE": "y", "CONFIG_HAVE_FUNCTION_ERROR_INJECTION": "y", "CONFIG_HAVE_NMI": "y", "CONFIG_TRACE_IRQFLAGS_SUPPORT": "y", "CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT": "y", "CONFIG_HAVE_ARCH_TRACEHOOK": "y", "CONFIG_HAVE_DMA_CONTIGUOUS": "y", "CONFIG_GENERIC_SMP_IDLE_THREAD": "y", "CONFIG_ARCH_HAS_FORTIFY_SOURCE": "y", "CONFIG_ARCH_HAS_SET_MEMORY": "y", "CONFIG_ARCH_HAS_SET_DIRECT_MAP": "y", "CONFIG_ARCH_HAS_CPU_FINALIZE_INIT": "y", "CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST": "y", "CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT": "y", "CONFIG_ARCH_WANTS_NO_INSTR": "y", "CONFIG_HAVE_ASM_MODVERSIONS": "y", "CONFIG_HAVE_REGS_AND_STACK_ACCESS_API": "y", "CONFIG_HAVE_RSEQ": "y", "CONFIG_HAVE_RUST": "y", "CONFIG_HAVE_FUNCTION_ARG_ACCESS_API": "y", "CONFIG_HAVE_HW_BREAKPOINT": "y", "CONFIG_HAVE_MIXED_BREAKPOINTS_REGS": "y", "CONFIG_HAVE_USER_RETURN_NOTIFIER": "y", "CONFIG_HAVE_PERF_EVENTS_NMI": "y", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF": "y", "CONFIG_HAVE_PERF_REGS": "y", "CONFIG_HAVE_PERF_USER_STACK_DUMP": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL": "y", "CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE": "y", "CONFIG_MMU_GATHER_TABLE_FREE": "y", "CONFIG_MMU_GATHER_RCU_TABLE_FREE": "y", "CONFIG_MMU_GATHER_MERGE_VMAS": "y", "CONFIG_MMU_LAZY_TLB_REFCOUNT": "y", "CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG": "y", "CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES": "y", "CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS": "y", "CONFIG_HAVE_ALIGNED_STRUCT_PAGE": "y", "CONFIG_HAVE_CMPXCHG_LOCAL": "y", "CONFIG_HAVE_CMPXCHG_DOUBLE": "y", "CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION": "y", "CONFIG_ARCH_WANT_OLD_COMPAT_IPC": "y", "CONFIG_HAVE_ARCH_SECCOMP": "y", "CONFIG_HAVE_ARCH_SECCOMP_FILTER": "y", "CONFIG_SECCOMP": "y", "CONFIG_SECCOMP_FILTER": "y", "CONFIG_SECCOMP_CACHE_DEBUG": "not set", "CONFIG_HAVE_ARCH_STACKLEAK": "y", "CONFIG_HAVE_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR": "y", "CONFIG_STACKPROTECTOR_STRONG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG": "y", "CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN": "y", "CONFIG_LTO_NONE": "y", "CONFIG_ARCH_SUPPORTS_CFI_CLANG": "y", "CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER": "y", "CONFIG_HAVE_CONTEXT_TRACKING_USER_OFFSTACK": "y", "CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN": "y", "CONFIG_HAVE_IRQ_TIME_ACCOUNTING": "y", "CONFIG_HAVE_MOVE_PUD": "y", "CONFIG_HAVE_MOVE_PMD": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE": "y", "CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD": "y", "CONFIG_HAVE_ARCH_HUGE_VMAP": "y", "CONFIG_HAVE_ARCH_HUGE_VMALLOC": "y", "CONFIG_ARCH_WANT_HUGE_PMD_SHARE": "y", "CONFIG_HAVE_ARCH_SOFT_DIRTY": "y", "CONFIG_HAVE_MOD_ARCH_SPECIFIC": "y", "CONFIG_MODULES_USE_ELF_RELA": "y", "CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK": "y", "CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_SOFTIRQ_ON_OWN_STACK": "y", "CONFIG_ARCH_HAS_ELF_RANDOMIZE": "y", "CONFIG_HAVE_ARCH_MMAP_RND_BITS": "y", "CONFIG_HAVE_EXIT_THREAD": "y", "CONFIG_ARCH_MMAP_RND_BITS": "28", "CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS": "y", "CONFIG_ARCH_MMAP_RND_COMPAT_BITS": "8", "CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES": "y", "CONFIG_HAVE_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_4KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_64KB": "y", "CONFIG_PAGE_SIZE_LESS_THAN_256KB": "y", "CONFIG_PAGE_SHIFT": "12", "CONFIG_HAVE_OBJTOOL": "y", "CONFIG_HAVE_JUMP_LABEL_HACK": "y", "CONFIG_HAVE_NOINSTR_HACK": "y", "CONFIG_HAVE_NOINSTR_VALIDATION": "y", "CONFIG_HAVE_UACCESS_VALIDATION": "y", "CONFIG_HAVE_STACK_VALIDATION": "y", "CONFIG_OLD_SIGSUSPEND3": "y", "CONFIG_COMPAT_OLD_SIGACTION": "y", "CONFIG_COMPAT_32BIT_TIME": "y", "CONFIG_ARCH_SUPPORTS_RT": "y", "CONFIG_HAVE_ARCH_VMAP_STACK": "y", "CONFIG_VMAP_STACK": "y", "CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET": "y", "CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT": "not set", "CONFIG_ARCH_HAS_STRICT_KERNEL_RWX": "y", "CONFIG_STRICT_KERNEL_RWX": "y", "CONFIG_ARCH_HAS_STRICT_MODULE_RWX": "y", "CONFIG_STRICT_MODULE_RWX": "y", "CONFIG_HAVE_ARCH_PREL32_RELOCATIONS": "y", "CONFIG_ARCH_USE_MEMREMAP_PROT": "y", "CONFIG_LOCK_EVENT_COUNTS": "not set", "CONFIG_ARCH_HAS_MEM_ENCRYPT": "y", "CONFIG_HAVE_STATIC_CALL": "y", "CONFIG_HAVE_STATIC_CALL_INLINE": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC": "y", "CONFIG_HAVE_PREEMPT_DYNAMIC_CALL": "y", "CONFIG_ARCH_WANT_LD_ORPHAN_WARN": "y", "CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC": "y", "CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK": "y", "CONFIG_ARCH_HAS_ELFCORE_COMPAT": "y", "CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH": "y", "CONFIG_DYNAMIC_SIGFRAME": "y", "CONFIG_ARCH_HAS_HW_PTE_YOUNG": "y", "CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG": "y", "CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT": "y", "CONFIG_GCOV_KERNEL": "not set", "CONFIG_ARCH_HAS_GCOV_PROFILE_ALL": "y", "CONFIG_HAVE_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGINS": "y", "CONFIG_GCC_PLUGIN_LATENT_ENTROPY": "not set", "CONFIG_FUNCTION_ALIGNMENT_4B": "y", "CONFIG_FUNCTION_ALIGNMENT_16B": "y", "CONFIG_FUNCTION_ALIGNMENT": "16", "CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT": "y", "CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT": "y", "CONFIG_RT_MUTEXES": "y", "CONFIG_MODULES": "y", "CONFIG_MODULE_DEBUG": "not set", "CONFIG_MODULE_FORCE_LOAD": "not set", "CONFIG_MODULE_UNLOAD": "y", "CONFIG_MODULE_FORCE_UNLOAD": "not set", "CONFIG_MODULE_UNLOAD_TAINT_TRACKING": "not set", "CONFIG_MODVERSIONS": "not set", "CONFIG_MODULE_SRCVERSION_ALL": "not set", "CONFIG_MODULE_SIG": "not set", "CONFIG_MODULE_COMPRESS": "not set", "CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS": "not set", "CONFIG_MODPROBE_PATH": "\\"/sbin/modprobe\\"", "CONFIG_TRIM_UNUSED_KSYMS": "not set", "CONFIG_MODULES_TREE_LOOKUP": "y", "CONFIG_BLOCK": "y", "CONFIG_BLOCK_LEGACY_AUTOLOAD": "y", "CONFIG_BLK_CGROUP_RWSTAT": "y", "CONFIG_BLK_CGROUP_PUNT_BIO": "y", "CONFIG_BLK_DEV_BSG_COMMON": "y", "CONFIG_BLK_ICQ": "y", "CONFIG_BLK_DEV_BSGLIB": "not set", "CONFIG_BLK_DEV_INTEGRITY": "not set", "CONFIG_BLK_DEV_WRITE_MOUNTED": "y", "CONFIG_BLK_DEV_ZONED": "not set", "CONFIG_BLK_DEV_THROTTLING": "not set", "CONFIG_BLK_WBT": "not set", "CONFIG_BLK_CGROUP_IOLATENCY": "not set", "CONFIG_BLK_CGROUP_IOCOST": "not set", "CONFIG_BLK_CGROUP_IOPRIO": "not set", "CONFIG_BLK_DEBUG_FS": "y", "CONFIG_BLK_SED_OPAL": "not set", "CONFIG_BLK_INLINE_ENCRYPTION": "not set", "CONFIG_PARTITION_ADVANCED": "y", "CONFIG_ACORN_PARTITION": "not set", "CONFIG_AIX_PARTITION": "not set", "CONFIG_OSF_PARTITION": "not set", "CONFIG_AMIGA_PARTITION": "not set", "CONFIG_ATARI_PARTITION": "not set", "CONFIG_MAC_PARTITION": "not set", "CONFIG_MSDOS_PARTITION": "y", "CONFIG_BSD_DISKLABEL": "not set", "CONFIG_MINIX_SUBPARTITION": "not set", "CONFIG_SOLARIS_X86_PARTITION": "not set", "CONFIG_UNIXWARE_DISKLABEL": "not set", "CONFIG_LDM_PARTITION": "not set", "CONFIG_SGI_PARTITION": "not set", "CONFIG_ULTRIX_PARTITION": "not set", "CONFIG_SUN_PARTITION": "not set", "CONFIG_KARMA_PARTITION": "not set", "CONFIG_EFI_PARTITION": "y", "CONFIG_SYSV68_PARTITION": "not set", "CONFIG_CMDLINE_PARTITION": "not set", "CONFIG_BLK_MQ_PCI": "y", "CONFIG_BLK_MQ_VIRTIO": "y", "CONFIG_BLK_PM": "y", "CONFIG_BLOCK_HOLDER_DEPRECATED": "y", "CONFIG_BLK_MQ_STACKING": "y", "CONFIG_MQ_IOSCHED_DEADLINE": "y", "CONFIG_MQ_IOSCHED_KYBER": "y", "CONFIG_IOSCHED_BFQ": "y", "CONFIG_BFQ_GROUP_IOSCHED": "y", "CONFIG_BFQ_CGROUP_DEBUG": "not set", "CONFIG_ASN1": "y", "CONFIG_UNINLINE_SPIN_UNLOCK": "y", "CONFIG_ARCH_SUPPORTS_ATOMIC_RMW": "y", "CONFIG_MUTEX_SPIN_ON_OWNER": "y", "CONFIG_RWSEM_SPIN_ON_OWNER": "y", "CONFIG_LOCK_SPIN_ON_OWNER": "y", "CONFIG_ARCH_USE_QUEUED_SPINLOCKS": "y", "CONFIG_QUEUED_SPINLOCKS": "y", "CONFIG_ARCH_USE_QUEUED_RWLOCKS": "y", "CONFIG_QUEUED_RWLOCKS": "y", "CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE": "y", "CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE": "y", "CONFIG_ARCH_HAS_SYSCALL_WRAPPER": "y", "CONFIG_FREEZER": "y", "CONFIG_BINFMT_ELF": "y", "CONFIG_COMPAT_BINFMT_ELF": "y", "CONFIG_ELFCORE": "y", "CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS": "y", "CONFIG_BINFMT_SCRIPT": "y", "CONFIG_BINFMT_MISC": "m", "CONFIG_COREDUMP": "y", "CONFIG_SWAP": "y", "CONFIG_ZSWAP": "not set", "CONFIG_SLUB": "y", "CONFIG_SLAB_MERGE_DEFAULT": "y", "CONFIG_SLAB_FREELIST_RANDOM": "not set", "CONFIG_SLAB_FREELIST_HARDENED": "not set", "CONFIG_SLAB_BUCKETS": "not set", "CONFIG_SLUB_STATS": "not set", "CONFIG_SLUB_CPU_PARTIAL": "y", "CONFIG_RANDOM_KMALLOC_CACHES": "not set", "CONFIG_SHUFFLE_PAGE_ALLOCATOR": "not set", "CONFIG_COMPAT_BRK": "y", "CONFIG_SPARSEMEM": "y", "CONFIG_SPARSEMEM_EXTREME": "y", "CONFIG_SPARSEMEM_VMEMMAP_ENABLE": "y", "CONFIG_SPARSEMEM_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP": "y", "CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP": "y", "CONFIG_HAVE_GUP_FAST": "y", "CONFIG_EXCLUSIVE_SYSTEM_RAM": "y", "CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG": "y", "CONFIG_MEMORY_HOTPLUG": "not set", "CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE": "y", "CONFIG_SPLIT_PTE_PTLOCKS": "y", "CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK": "y", "CONFIG_SPLIT_PMD_PTLOCKS": "y", "CONFIG_MEMORY_BALLOON": "y", "CONFIG_BALLOON_COMPACTION": "y", "CONFIG_COMPACTION": "y", "CONFIG_COMPACT_UNEVICTABLE_DEFAULT": "1", "CONFIG_PAGE_REPORTING": "y", "CONFIG_MIGRATION": "y", "CONFIG_PCP_BATCH_SCALE_MAX": "5", "CONFIG_PHYS_ADDR_T_64BIT": "y", "CONFIG_MMU_NOTIFIER": "y", "CONFIG_KSM": "not set", "CONFIG_DEFAULT_MMAP_MIN_ADDR": "4096", "CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE": "y", "CONFIG_MEMORY_FAILURE": "not set", "CONFIG_ARCH_WANT_GENERAL_HUGETLB": "y", "CONFIG_ARCH_WANTS_THP_SWAP": "y", "CONFIG_TRANSPARENT_HUGEPAGE": "not set", "CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK": "y", "CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK": "y", "CONFIG_HAVE_SETUP_PER_CPU_AREA": "y", "CONFIG_CMA": "not set", "CONFIG_MEM_SOFT_DIRTY": "not set", "CONFIG_GENERIC_EARLY_IOREMAP": "y", "CONFIG_DEFERRED_STRUCT_PAGE_INIT": "not set", "CONFIG_IDLE_PAGE_TRACKING": "not set", "CONFIG_ARCH_HAS_CACHE_LINE_SIZE": "y", "CONFIG_ARCH_HAS_CURRENT_STACK_POINTER": "y", "CONFIG_ARCH_HAS_PTE_DEVMAP": "y", "CONFIG_ZONE_DMA": "y", "CONFIG_ZONE_DMA32": "y", "CONFIG_VMAP_PFN": "y", "CONFIG_ARCH_USES_HIGH_VMA_FLAGS": "y", "CONFIG_ARCH_HAS_PKEYS": "y", "CONFIG_ARCH_USES_PG_ARCH_2": "y", "CONFIG_VM_EVENT_COUNTERS": "y", "CONFIG_PERCPU_STATS": "not set", "CONFIG_GUP_TEST": "not set", "CONFIG_DMAPOOL_TEST": "not set", "CONFIG_ARCH_HAS_PTE_SPECIAL": "y", "CONFIG_MEMFD_CREATE": "y", "CONFIG_SECRETMEM": "y", "CONFIG_ANON_VMA_NAME": "not set", "CONFIG_USERFAULTFD": "not set", "CONFIG_LRU_GEN": "not set", "CONFIG_ARCH_SUPPORTS_PER_VMA_LOCK": "y", "CONFIG_PER_VMA_LOCK": "y", "CONFIG_LOCK_MM_AND_FIND_VMA": "y", "CONFIG_EXECMEM": "y", "CONFIG_DAMON": "not set", "CONFIG_NET": "y", "CONFIG_COMPAT_NETLINK_MESSAGES": "y", "CONFIG_NET_INGRESS": "y", "CONFIG_NET_EGRESS": "y", "CONFIG_NET_XGRESS": "y", "CONFIG_SKB_EXTENSIONS": "y", "CONFIG_NET_DEVMEM": "y", "CONFIG_PACKET": "y", "CONFIG_PACKET_DIAG": "y", "CONFIG_UNIX": "y", "CONFIG_AF_UNIX_OOB": "y", "CONFIG_UNIX_DIAG": "y", "CONFIG_TLS": "not set", "CONFIG_XFRM": "y", "CONFIG_XFRM_ALGO": "y", "CONFIG_XFRM_USER": "m", "CONFIG_XFRM_USER_COMPAT": "not set", "CONFIG_XFRM_INTERFACE": "not set", "CONFIG_XFRM_SUB_POLICY": "y", "CONFIG_XFRM_MIGRATE": "y", "CONFIG_XFRM_STATISTICS": "not set", "CONFIG_XFRM_AH": "y", "CONFIG_XFRM_ESP": "y", "CONFIG_XFRM_IPCOMP": "m", "CONFIG_NET_KEY": "m", "CONFIG_NET_KEY_MIGRATE": "y", "CONFIG_XDP_SOCKETS": "not set", "CONFIG_NET_HANDSHAKE": "y", "CONFIG_INET": "y", "CONFIG_IP_MULTICAST": "y", "CONFIG_IP_ADVANCED_ROUTER": "y", "CONFIG_IP_FIB_TRIE_STATS": "not set", "CONFIG_IP_MULTIPLE_TABLES": "y", "CONFIG_IP_ROUTE_MULTIPATH": "y", "CONFIG_IP_ROUTE_VERBOSE": "y", "CONFIG_IP_ROUTE_CLASSID": "y", "CONFIG_IP_PNP": "y", "CONFIG_IP_PNP_DHCP": "y", "CONFIG_IP_PNP_BOOTP": "y", "CONFIG_IP_PNP_RARP": "y", "CONFIG_NET_IPIP": "m", "CONFIG_NET_IPGRE_DEMUX": "m", "CONFIG_NET_IP_TUNNEL": "y", "CONFIG_NET_IPGRE": "m", "CONFIG_NET_IPGRE_BROADCAST": "y", "CONFIG_IP_MROUTE_COMMON": "y", "CONFIG_IP_MROUTE": "y", "CONFIG_IP_MROUTE_MULTIPLE_TABLES": "not set", "CONFIG_IP_PIMSM_V1": "y", "CONFIG_IP_PIMSM_V2": "y", "CONFIG_SYN_COOKIES": "y", "CONFIG_NET_IPVTI": "not set", "CONFIG_NET_UDP_TUNNEL": "y", "CONFIG_NET_FOU": "not set", "CONFIG_NET_FOU_IP_TUNNELS": "not set", "CONFIG_INET_AH": "m", "CONFIG_INET_ESP": "m", "CONFIG_INET_ESP_OFFLOAD": "not set", "CONFIG_INET_ESPINTCP": "not set", "CONFIG_INET_IPCOMP": "m", "CONFIG_INET_TABLE_PERTURB_ORDER": "16", "CONFIG_INET_XFRM_TUNNEL": "m", "CONFIG_INET_TUNNEL": "y", "CONFIG_INET_DIAG": "y", "CONFIG_INET_TCP_DIAG": "y", "CONFIG_INET_UDP_DIAG": "y", "CONFIG_INET_RAW_DIAG": "not set", "CONFIG_INET_DIAG_DESTROY": "not set", "CONFIG_TCP_CONG_ADVANCED": "not set", "CONFIG_TCP_CONG_CUBIC": "y", "CONFIG_DEFAULT_TCP_CONG": "\\"cubic\\"", "CONFIG_TCP_AO": "not set", "CONFIG_TCP_MD5SIG": "not set", "CONFIG_IPV6": "y", "CONFIG_IPV6_ROUTER_PREF": "y", "CONFIG_IPV6_ROUTE_INFO": "not set", "CONFIG_IPV6_OPTIMISTIC_DAD": "not set", "CONFIG_INET6_AH": "y", "CONFIG_INET6_ESP": "y", "CONFIG_INET6_ESP_OFFLOAD": "not set", "CONFIG_INET6_ESPINTCP": "not set", "CONFIG_INET6_IPCOMP": "m", "CONFIG_IPV6_MIP6": "not set", "CONFIG_IPV6_ILA": "not set", "CONFIG_INET6_XFRM_TUNNEL": "m", "CONFIG_INET6_TUNNEL": "m", "CONFIG_IPV6_VTI": "not set", "CONFIG_IPV6_SIT": "y", "CONFIG_IPV6_SIT_6RD": "not set", "CONFIG_IPV6_NDISC_NODETYPE": "y", "CONFIG_IPV6_TUNNEL": "m", "CONFIG_IPV6_GRE": "not set", "CONFIG_IPV6_MULTIPLE_TABLES": "not set", "CONFIG_IPV6_MROUTE": "not set", "CONFIG_IPV6_SEG6_LWTUNNEL": "not set", "CONFIG_IPV6_SEG6_HMAC": "not set", "CONFIG_IPV6_RPL_LWTUNNEL": "not set", "CONFIG_IPV6_IOAM6_LWTUNNEL": "not set", "CONFIG_NETLABEL": "not set", "CONFIG_MPTCP": "not set", "CONFIG_NETWORK_SECMARK": "not set", "CONFIG_NET_PTP_CLASSIFY": "y", "CONFIG_NETWORK_PHY_TIMESTAMPING": "not set", "CONFIG_NETFILTER": "y", "CONFIG_NETFILTER_ADVANCED": "y", "CONFIG_BRIDGE_NETFILTER": "y", "CONFIG_NETFILTER_INGRESS": "y", "CONFIG_NETFILTER_EGRESS": "y", "CONFIG_NETFILTER_SKIP_EGRESS": "y", "CONFIG_NETFILTER_NETLINK": "y", "CONFIG_NETFILTER_FAMILY_BRIDGE": "y", "CONFIG_NETFILTER_FAMILY_ARP": "y", "CONFIG_NETFILTER_BPF_LINK": "y", "CONFIG_NETFILTER_NETLINK_HOOK": "not set", "CONFIG_NETFILTER_NETLINK_ACCT": "not set", "CONFIG_NETFILTER_NETLINK_QUEUE": "m", "CONFIG_NETFILTER_NETLINK_LOG": "m", "CONFIG_NETFILTER_NETLINK_OSF": "m", "CONFIG_NF_CONNTRACK": "y", "CONFIG_NF_LOG_SYSLOG": "m", "CONFIG_NETFILTER_CONNCOUNT": "m", "CONFIG_NF_CONNTRACK_MARK": "y", "CONFIG_NF_CONNTRACK_ZONES": "not set", "CONFIG_NF_CONNTRACK_PROCFS": "not set", "CONFIG_NF_CONNTRACK_EVENTS": "not set", "CONFIG_NF_CONNTRACK_TIMEOUT": "y", "CONFIG_NF_CONNTRACK_TIMESTAMP": "not set", "CONFIG_NF_CONNTRACK_LABELS": "not set", "CONFIG_NF_CONNTRACK_OVS": "y", "CONFIG_NF_CT_PROTO_DCCP": "y", "CONFIG_NF_CT_PROTO_GRE": "y", "CONFIG_NF_CT_PROTO_SCTP": "y", "CONFIG_NF_CT_PROTO_UDPLITE": "y", "CONFIG_NF_CONNTRACK_AMANDA": "m", "CONFIG_NF_CONNTRACK_FTP": "m", "CONFIG_NF_CONNTRACK_H323": "m", "CONFIG_NF_CONNTRACK_IRC": "m", "CONFIG_NF_CONNTRACK_BROADCAST": "m", "CONFIG_NF_CONNTRACK_NETBIOS_NS": "m", "CONFIG_NF_CONNTRACK_SNMP": "not set", "CONFIG_NF_CONNTRACK_PPTP": "m", "CONFIG_NF_CONNTRACK_SANE": "m", "CONFIG_NF_CONNTRACK_SIP": "m", "CONFIG_NF_CONNTRACK_TFTP": "m", "CONFIG_NF_CT_NETLINK": "m", "CONFIG_NF_CT_NETLINK_TIMEOUT": "not set", "CONFIG_NETFILTER_NETLINK_GLUE_CT": "not set", "CONFIG_NF_NAT": "m", "CONFIG_NF_NAT_AMANDA": "m", "CONFIG_NF_NAT_FTP": "m", "CONFIG_NF_NAT_IRC": "m", "CONFIG_NF_NAT_SIP": "m", "CONFIG_NF_NAT_TFTP": "m", "CONFIG_NF_NAT_REDIRECT": "y", "CONFIG_NF_NAT_MASQUERADE": "y", "CONFIG_NF_NAT_OVS": "y", "CONFIG_NETFILTER_SYNPROXY": "m", "CONFIG_NF_TABLES": "y", "CONFIG_NF_TABLES_INET": "y", "CONFIG_NF_TABLES_NETDEV": "y", "CONFIG_NFT_NUMGEN": "m", "CONFIG_NFT_CT": "m", "CONFIG_NFT_FLOW_OFFLOAD": "m", "CONFIG_NFT_CONNLIMIT": "m", "CONFIG_NFT_LOG": "m", "CONFIG_NFT_LIMIT": "m", "CONFIG_NFT_MASQ": "m", "CONFIG_NFT_REDIR": "m", "CONFIG_NFT_NAT": "m", "CONFIG_NFT_TUNNEL": "m", "CONFIG_NFT_QUEUE": "m", "CONFIG_NFT_QUOTA": "m", "CONFIG_NFT_REJECT": "m", "CONFIG_NFT_REJECT_INET": "m", "CONFIG_NFT_COMPAT": "m", "CONFIG_NFT_HASH": "m", "CONFIG_NFT_FIB": "y", "CONFIG_NFT_FIB_INET": "y", "CONFIG_NFT_XFRM": "m", "CONFIG_NFT_SOCKET": "m", "CONFIG_NFT_OSF": "m", "CONFIG_NFT_TPROXY": "not set", "CONFIG_NFT_SYNPROXY": "m", "CONFIG_NF_DUP_NETDEV": "not set", "CONFIG_NFT_DUP_NETDEV": "not set", "CONFIG_NFT_FWD_NETDEV": "not set", "CONFIG_NFT_FIB_NETDEV": "not set", "CONFIG_NFT_REJECT_NETDEV": "not set", "CONFIG_NF_FLOW_TABLE_INET": "m", "CONFIG_NF_FLOW_TABLE": "m", "CONFIG_NF_FLOW_TABLE_PROCFS": "not set", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_NETFILTER_XTABLES_COMPAT": "y", "CONFIG_NETFILTER_XT_MARK": "m", "CONFIG_NETFILTER_XT_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CHECKSUM": "m", "CONFIG_NETFILTER_XT_TARGET_CLASSIFY": "m", "CONFIG_NETFILTER_XT_TARGET_CONNMARK": "m", "CONFIG_NETFILTER_XT_TARGET_CT": "m", "CONFIG_NETFILTER_XT_TARGET_DSCP": "m", "CONFIG_NETFILTER_XT_TARGET_HL": "m", "CONFIG_NETFILTER_XT_TARGET_HMARK": "not set", "CONFIG_NETFILTER_XT_TARGET_IDLETIMER": "not set", "CONFIG_NETFILTER_XT_TARGET_LED": "not set", "CONFIG_NETFILTER_XT_TARGET_LOG": "m", "CONFIG_NETFILTER_XT_TARGET_MARK": "m", "CONFIG_NETFILTER_XT_NAT": "m", "CONFIG_NETFILTER_XT_TARGET_NETMAP": "m", "CONFIG_NETFILTER_XT_TARGET_NFLOG": "m", "CONFIG_NETFILTER_XT_TARGET_NFQUEUE": "m", "CONFIG_NETFILTER_XT_TARGET_NOTRACK": "not set", "CONFIG_NETFILTER_XT_TARGET_RATEEST": "not set", "CONFIG_NETFILTER_XT_TARGET_REDIRECT": "m", "CONFIG_NETFILTER_XT_TARGET_MASQUERADE": "m", "CONFIG_NETFILTER_XT_TARGET_TEE": "not set", "CONFIG_NETFILTER_XT_TARGET_TPROXY": "not set", "CONFIG_NETFILTER_XT_TARGET_TRACE": "m", "CONFIG_NETFILTER_XT_TARGET_TCPMSS": "m", "CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP": "not set", "CONFIG_NETFILTER_XT_MATCH_ADDRTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_BPF": "m", "CONFIG_NETFILTER_XT_MATCH_CGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_CLUSTER": "not set", "CONFIG_NETFILTER_XT_MATCH_COMMENT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNBYTES": "m", "CONFIG_NETFILTER_XT_MATCH_CONNLABEL": "not set", "CONFIG_NETFILTER_XT_MATCH_CONNLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_CONNMARK": "m", "CONFIG_NETFILTER_XT_MATCH_CONNTRACK": "m", "CONFIG_NETFILTER_XT_MATCH_CPU": "not set", "CONFIG_NETFILTER_XT_MATCH_DCCP": "m", "CONFIG_NETFILTER_XT_MATCH_DEVGROUP": "not set", "CONFIG_NETFILTER_XT_MATCH_DSCP": "m", "CONFIG_NETFILTER_XT_MATCH_ECN": "m", "CONFIG_NETFILTER_XT_MATCH_ESP": "m", "CONFIG_NETFILTER_XT_MATCH_HASHLIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_HELPER": "m", "CONFIG_NETFILTER_XT_MATCH_HL": "m", "CONFIG_NETFILTER_XT_MATCH_IPCOMP": "not set", "CONFIG_NETFILTER_XT_MATCH_IPRANGE": "not set", "CONFIG_NETFILTER_XT_MATCH_L2TP": "m", "CONFIG_NETFILTER_XT_MATCH_LENGTH": "m", "CONFIG_NETFILTER_XT_MATCH_LIMIT": "m", "CONFIG_NETFILTER_XT_MATCH_MAC": "m", "CONFIG_NETFILTER_XT_MATCH_MARK": "m", "CONFIG_NETFILTER_XT_MATCH_MULTIPORT": "m", "CONFIG_NETFILTER_XT_MATCH_NFACCT": "not set", "CONFIG_NETFILTER_XT_MATCH_OSF": "not set", "CONFIG_NETFILTER_XT_MATCH_OWNER": "not set", "CONFIG_NETFILTER_XT_MATCH_POLICY": "m", "CONFIG_NETFILTER_XT_MATCH_PHYSDEV": "not set", "CONFIG_NETFILTER_XT_MATCH_PKTTYPE": "m", "CONFIG_NETFILTER_XT_MATCH_QUOTA": "m", "CONFIG_NETFILTER_XT_MATCH_RATEEST": "not set", "CONFIG_NETFILTER_XT_MATCH_REALM": "m", "CONFIG_NETFILTER_XT_MATCH_RECENT": "not set", "CONFIG_NETFILTER_XT_MATCH_SCTP": "m", "CONFIG_NETFILTER_XT_MATCH_SOCKET": "not set", "CONFIG_NETFILTER_XT_MATCH_STATE": "m", "CONFIG_NETFILTER_XT_MATCH_STATISTIC": "m", "CONFIG_NETFILTER_XT_MATCH_STRING": "m", "CONFIG_NETFILTER_XT_MATCH_TCPMSS": "m", "CONFIG_NETFILTER_XT_MATCH_TIME": "not set", "CONFIG_NETFILTER_XT_MATCH_U32": "m", "CONFIG_IP_SET": "not set", "CONFIG_IP_VS": "not set", "CONFIG_NF_DEFRAG_IPV4": "y", "CONFIG_IP_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV4": "m", "CONFIG_NF_TPROXY_IPV4": "not set", "CONFIG_NF_TABLES_IPV4": "y", "CONFIG_NFT_REJECT_IPV4": "m", "CONFIG_NFT_DUP_IPV4": "not set", "CONFIG_NFT_FIB_IPV4": "y", "CONFIG_NF_TABLES_ARP": "y", "CONFIG_NF_DUP_IPV4": "not set", "CONFIG_NF_LOG_ARP": "not set", "CONFIG_NF_LOG_IPV4": "not set", "CONFIG_NF_REJECT_IPV4": "m", "CONFIG_NF_NAT_PPTP": "m", "CONFIG_NF_NAT_H323": "m", "CONFIG_IP_NF_IPTABLES": "m", "CONFIG_IP_NF_MATCH_AH": "m", "CONFIG_IP_NF_MATCH_ECN": "m", "CONFIG_IP_NF_MATCH_RPFILTER": "m", "CONFIG_IP_NF_MATCH_TTL": "m", "CONFIG_IP_NF_FILTER": "m", "CONFIG_IP_NF_TARGET_REJECT": "m", "CONFIG_IP_NF_TARGET_SYNPROXY": "m", "CONFIG_IP_NF_NAT": "m", "CONFIG_IP_NF_TARGET_MASQUERADE": "m", "CONFIG_IP_NF_TARGET_NETMAP": "m", "CONFIG_IP_NF_TARGET_REDIRECT": "m", "CONFIG_IP_NF_MANGLE": "m", "CONFIG_IP_NF_TARGET_ECN": "m", "CONFIG_IP_NF_TARGET_TTL": "m", "CONFIG_IP_NF_RAW": "m", "CONFIG_IP_NF_SECURITY": "m", "CONFIG_IP_NF_ARPTABLES": "m", "CONFIG_NFT_COMPAT_ARP": "m", "CONFIG_IP_NF_ARPFILTER": "m", "CONFIG_IP_NF_ARP_MANGLE": "m", "CONFIG_IP6_NF_IPTABLES_LEGACY": "m", "CONFIG_NF_SOCKET_IPV6": "m", "CONFIG_NF_TPROXY_IPV6": "not set", "CONFIG_NF_TABLES_IPV6": "y", "CONFIG_NFT_REJECT_IPV6": "m", "CONFIG_NFT_DUP_IPV6": "not set", "CONFIG_NFT_FIB_IPV6": "y", "CONFIG_NF_DUP_IPV6": "not set", "CONFIG_NF_REJECT_IPV6": "m", "CONFIG_NF_LOG_IPV6": "m", "CONFIG_IP6_NF_IPTABLES": "m", "CONFIG_IP6_NF_MATCH_AH": "not set", "CONFIG_IP6_NF_MATCH_EUI64": "m", "CONFIG_IP6_NF_MATCH_FRAG": "m", "CONFIG_IP6_NF_MATCH_OPTS": "m", "CONFIG_IP6_NF_MATCH_HL": "m", "CONFIG_IP6_NF_MATCH_IPV6HEADER": "m", "CONFIG_IP6_NF_MATCH_MH": "not set", "CONFIG_IP6_NF_MATCH_RPFILTER": "not set", "CONFIG_IP6_NF_MATCH_RT": "m", "CONFIG_IP6_NF_MATCH_SRH": "not set", "CONFIG_IP6_NF_TARGET_HL": "not set", "CONFIG_IP6_NF_FILTER": "m", "CONFIG_IP6_NF_TARGET_REJECT": "not set", "CONFIG_IP6_NF_TARGET_SYNPROXY": "not set", "CONFIG_IP6_NF_MANGLE": "m", "CONFIG_IP6_NF_RAW": "m", "CONFIG_IP6_NF_SECURITY": "not set", "CONFIG_IP6_NF_NAT": "m", "CONFIG_IP6_NF_TARGET_MASQUERADE": "not set", "CONFIG_IP6_NF_TARGET_NPT": "not set", "CONFIG_NF_DEFRAG_IPV6": "y", "CONFIG_NF_TABLES_BRIDGE": "m", "CONFIG_NFT_BRIDGE_META": "not set", "CONFIG_NFT_BRIDGE_REJECT": "not set", "CONFIG_NF_CONNTRACK_BRIDGE": "not set", "CONFIG_BRIDGE_NF_EBTABLES_LEGACY": "m", "CONFIG_BRIDGE_NF_EBTABLES": "m", "CONFIG_BRIDGE_EBT_BROUTE": "m", "CONFIG_BRIDGE_EBT_T_FILTER": "m", "CONFIG_BRIDGE_EBT_T_NAT": "m", "CONFIG_BRIDGE_EBT_802_3": "m", "CONFIG_BRIDGE_EBT_AMONG": "m", "CONFIG_BRIDGE_EBT_ARP": "m", "CONFIG_BRIDGE_EBT_IP": "m", "CONFIG_BRIDGE_EBT_IP6": "m", "CONFIG_BRIDGE_EBT_LIMIT": "m", "CONFIG_BRIDGE_EBT_MARK": "m", "CONFIG_BRIDGE_EBT_PKTTYPE": "m", "CONFIG_BRIDGE_EBT_STP": "m", "CONFIG_BRIDGE_EBT_VLAN": "m", "CONFIG_BRIDGE_EBT_ARPREPLY": "m", "CONFIG_BRIDGE_EBT_DNAT": "m", "CONFIG_BRIDGE_EBT_MARK_T": "m", "CONFIG_BRIDGE_EBT_REDIRECT": "m", "CONFIG_BRIDGE_EBT_SNAT": "m", "CONFIG_BRIDGE_EBT_LOG": "m", "CONFIG_BRIDGE_EBT_NFLOG": "m", "CONFIG_IP_SCTP": "m", "CONFIG_SCTP_DBG_OBJCNT": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1": "not set", "CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE": "not set", "CONFIG_SCTP_COOKIE_HMAC_MD5": "y", "CONFIG_SCTP_COOKIE_HMAC_SHA1": "not set", "CONFIG_INET_SCTP_DIAG": "m", "CONFIG_RDS": "not set", "CONFIG_TIPC": "m", "CONFIG_TIPC_MEDIA_UDP": "y", "CONFIG_TIPC_CRYPTO": "y", "CONFIG_TIPC_DIAG": "m", "CONFIG_ATM": "not set", "CONFIG_L2TP": "y", "CONFIG_L2TP_DEBUGFS": "not set", "CONFIG_L2TP_V3": "not set", "CONFIG_STP": "y", "CONFIG_BRIDGE": "y", "CONFIG_BRIDGE_IGMP_SNOOPING": "y", "CONFIG_BRIDGE_VLAN_FILTERING": "y", "CONFIG_BRIDGE_MRP": "not set", "CONFIG_BRIDGE_CFM": "not set", "CONFIG_NET_DSA": "not set", "CONFIG_VLAN_8021Q": "y", "CONFIG_VLAN_8021Q_GVRP": "not set", "CONFIG_VLAN_8021Q_MVRP": "not set", "CONFIG_LLC": "y", "CONFIG_LLC2": "not set", "CONFIG_ATALK": "not set", "CONFIG_X25": "not set", "CONFIG_LAPB": "not set", "CONFIG_PHONET": "not set", "CONFIG_6LOWPAN": "m", "CONFIG_6LOWPAN_DEBUGFS": "not set", "CONFIG_6LOWPAN_NHC": "m", "CONFIG_6LOWPAN_NHC_DEST": "m", "CONFIG_6LOWPAN_NHC_FRAGMENT": "m", "CONFIG_6LOWPAN_NHC_HOP": "m", "CONFIG_6LOWPAN_NHC_IPV6": "m", "CONFIG_6LOWPAN_NHC_MOBILITY": "m", "CONFIG_6LOWPAN_NHC_ROUTING": "m", "CONFIG_6LOWPAN_NHC_UDP": "m", "CONFIG_6LOWPAN_GHC_EXT_HDR_HOP": "not set", "CONFIG_6LOWPAN_GHC_UDP": "not set", "CONFIG_6LOWPAN_GHC_ICMPV6": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_DEST": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG": "not set", "CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE": "not set", "CONFIG_IEEE802154": "not set", "CONFIG_NET_SCHED": "y", "CONFIG_NET_SCH_HTB": "m", "CONFIG_NET_SCH_HFSC": "m", "CONFIG_NET_SCH_PRIO": "m", "CONFIG_NET_SCH_MULTIQ": "m", "CONFIG_NET_SCH_RED": "m", "CONFIG_NET_SCH_SFB": "not set", "CONFIG_NET_SCH_SFQ": "m", "CONFIG_NET_SCH_TEQL": "m", "CONFIG_NET_SCH_TBF": "m", "CONFIG_NET_SCH_CBS": "not set", "CONFIG_NET_SCH_ETF": "not set", "CONFIG_NET_SCH_TAPRIO": "not set", "CONFIG_NET_SCH_GRED": "m", "CONFIG_NET_SCH_NETEM": "m", "CONFIG_NET_SCH_DRR": "not set", "CONFIG_NET_SCH_MQPRIO": "not set", "CONFIG_NET_SCH_SKBPRIO": "not set", "CONFIG_NET_SCH_CHOKE": "not set", "CONFIG_NET_SCH_QFQ": "not set", "CONFIG_NET_SCH_CODEL": "m", "CONFIG_NET_SCH_FQ_CODEL": "m", "CONFIG_NET_SCH_CAKE": "not set", "CONFIG_NET_SCH_FQ": "not set", "CONFIG_NET_SCH_HHF": "not set", "CONFIG_NET_SCH_PIE": "not set", "CONFIG_NET_SCH_INGRESS": "m", "CONFIG_NET_SCH_PLUG": "not set", "CONFIG_NET_SCH_ETS": "not set", "CONFIG_NET_SCH_DEFAULT": "not set", "CONFIG_NET_CLS": "y", "CONFIG_NET_CLS_BASIC": "y", "CONFIG_NET_CLS_ROUTE4": "not set", "CONFIG_NET_CLS_FW": "not set", "CONFIG_NET_CLS_U32": "y", "CONFIG_CLS_U32_PERF": "not set", "CONFIG_CLS_U32_MARK": "not set", "CONFIG_NET_CLS_FLOW": "not set", "CONFIG_NET_CLS_CGROUP": "m", "CONFIG_NET_CLS_BPF": "not set", "CONFIG_NET_CLS_FLOWER": "m", "CONFIG_NET_CLS_MATCHALL": "not set", "CONFIG_NET_EMATCH": "y", "CONFIG_NET_EMATCH_STACK": "32", "CONFIG_NET_EMATCH_CMP": "not set", "CONFIG_NET_EMATCH_NBYTE": "not set", "CONFIG_NET_EMATCH_U32": "y", "CONFIG_NET_EMATCH_META": "y", "CONFIG_NET_EMATCH_TEXT": "not set", "CONFIG_NET_EMATCH_IPT": "not set", "CONFIG_NET_CLS_ACT": "y", "CONFIG_NET_ACT_POLICE": "m", "CONFIG_NET_ACT_GACT": "not set", "CONFIG_NET_ACT_MIRRED": "m", "CONFIG_NET_ACT_SAMPLE": "not set", "CONFIG_NET_ACT_NAT": "not set", "CONFIG_NET_ACT_PEDIT": "not set", "CONFIG_NET_ACT_SIMP": "not set", "CONFIG_NET_ACT_SKBEDIT": "m", "CONFIG_NET_ACT_CSUM": "not set", "CONFIG_NET_ACT_MPLS": "not set", "CONFIG_NET_ACT_VLAN": "not set", "CONFIG_NET_ACT_BPF": "not set", "CONFIG_NET_ACT_CONNMARK": "not set", "CONFIG_NET_ACT_CTINFO": "not set", "CONFIG_NET_ACT_SKBMOD": "not set", "CONFIG_NET_ACT_IFE": "not set", "CONFIG_NET_ACT_TUNNEL_KEY": "not set", "CONFIG_NET_ACT_CT": "not set", "CONFIG_NET_ACT_GATE": "not set", "CONFIG_NET_TC_SKB_EXT": "not set", "CONFIG_NET_SCH_FIFO": "y", "CONFIG_DCB": "not set", "CONFIG_DNS_RESOLVER": "y", "CONFIG_BATMAN_ADV": "not set", "CONFIG_OPENVSWITCH": "m", "CONFIG_OPENVSWITCH_GRE": "m", "CONFIG_OPENVSWITCH_VXLAN": "m", "CONFIG_VSOCKETS": "y", "CONFIG_VSOCKETS_DIAG": "y", "CONFIG_VSOCKETS_LOOPBACK": "y", "CONFIG_VIRTIO_VSOCKETS": "y", "CONFIG_VIRTIO_VSOCKETS_COMMON": "y", "CONFIG_NETLINK_DIAG": "y", "CONFIG_MPLS": "y", "CONFIG_NET_MPLS_GSO": "m", "CONFIG_MPLS_ROUTING": "not set", "CONFIG_NET_NSH": "m", "CONFIG_HSR": "not set", "CONFIG_NET_SWITCHDEV": "not set", "CONFIG_NET_L3_MASTER_DEV": "y", "CONFIG_QRTR": "not set", "CONFIG_NET_NCSI": "not set", "CONFIG_PCPU_DEV_REFCNT": "y", "CONFIG_MAX_SKB_FRAGS": "17", "CONFIG_RPS": "y", "CONFIG_RFS_ACCEL": "y", "CONFIG_SOCK_RX_QUEUE_MAPPING": "y", "CONFIG_XPS": "y", "CONFIG_CGROUP_NET_PRIO": "y", "CONFIG_CGROUP_NET_CLASSID": "y", "CONFIG_NET_RX_BUSY_POLL": "y", "CONFIG_BQL": "y", "CONFIG_BPF_STREAM_PARSER": "not set", "CONFIG_NET_FLOW_LIMIT": "y", "CONFIG_NET_PKTGEN": "m", "CONFIG_NET_DROP_MONITOR": "not set", "CONFIG_HAMRADIO": "not set", "CONFIG_CAN": "not set", "CONFIG_BT": "y", "CONFIG_BT_BREDR": "y", "CONFIG_BT_RFCOMM": "m", "CONFIG_BT_RFCOMM_TTY": "y", "CONFIG_BT_BNEP": "m", "CONFIG_BT_BNEP_MC_FILTER": "y", "CONFIG_BT_BNEP_PROTO_FILTER": "y", "CONFIG_BT_HIDP": "m", "CONFIG_BT_LE": "y", "CONFIG_BT_LE_L2CAP_ECRED": "y", "CONFIG_BT_6LOWPAN": "m", "CONFIG_BT_LEDS": "not set", "CONFIG_BT_MSFTEXT": "not set", "CONFIG_BT_AOSPEXT": "not set", "CONFIG_BT_DEBUGFS": "y", "CONFIG_BT_SELFTEST": "not set", "CONFIG_BT_FEATURE_DEBUG": "not set", "CONFIG_BT_HCIBTUSB": "not set", "CONFIG_BT_HCIBTSDIO": "not set", "CONFIG_BT_HCIUART": "not set", "CONFIG_BT_HCIBCM203X": "not set", "CONFIG_BT_HCIBCM4377": "not set", "CONFIG_BT_HCIBPA10X": "not set", "CONFIG_BT_HCIBFUSB": "not set", "CONFIG_BT_HCIVHCI": "not set", "CONFIG_BT_MRVL": "not set", "CONFIG_BT_MTKSDIO": "not set", "CONFIG_BT_VIRTIO": "not set", "CONFIG_BT_INTEL_PCIE": "not set", "CONFIG_AF_RXRPC": "not set", "CONFIG_AF_KCM": "not set", "CONFIG_MCTP": "not set", "CONFIG_FIB_RULES": "y", "CONFIG_WIRELESS": "y", "CONFIG_WEXT_CORE": "y", "CONFIG_WEXT_PROC": "y", "CONFIG_CFG80211": "m", "CONFIG_NL80211_TESTMODE": "not set", "CONFIG_CFG80211_DEVELOPER_WARNINGS": "not set", "CONFIG_CFG80211_REQUIRE_SIGNED_REGDB": "y", "CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS": "y", "CONFIG_CFG80211_DEFAULT_PS": "y", "CONFIG_CFG80211_DEBUGFS": "not set", "CONFIG_CFG80211_CRDA_SUPPORT": "y", "CONFIG_CFG80211_WEXT": "y", "CONFIG_MAC80211": "m", "CONFIG_MAC80211_HAS_RC": "y", "CONFIG_MAC80211_RC_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT_MINSTREL": "y", "CONFIG_MAC80211_RC_DEFAULT": "\\"minstrel_ht\\"", "CONFIG_MAC80211_MESH": "not set", "CONFIG_MAC80211_LEDS": "y", "CONFIG_MAC80211_MESSAGE_TRACING": "not set", "CONFIG_MAC80211_DEBUG_MENU": "not set", "CONFIG_MAC80211_STA_HASH_MAX_SIZE": "0", "CONFIG_RFKILL": "y", "CONFIG_RFKILL_LEDS": "y", "CONFIG_RFKILL_INPUT": "y", "CONFIG_RFKILL_GPIO": "not set", "CONFIG_NET_9P": "not set", "CONFIG_CAIF": "not set", "CONFIG_CEPH_LIB": "not set", "CONFIG_NFC": "not set", "CONFIG_PSAMPLE": "not set", "CONFIG_NET_IFE": "not set", "CONFIG_LWTUNNEL": "not set", "CONFIG_DST_CACHE": "y", "CONFIG_GRO_CELLS": "y", "CONFIG_NET_SELFTESTS": "m", "CONFIG_NET_SOCK_MSG": "y", "CONFIG_NET_DEVLINK": "y", "CONFIG_PAGE_POOL": "y", "CONFIG_PAGE_POOL_STATS": "not set", "CONFIG_FAILOVER": "y", "CONFIG_ETHTOOL_NETLINK": "y", "CONFIG_HAVE_PCI": "y", "CONFIG_GENERIC_PCI_IOMAP": "y", "CONFIG_PCI": "y", "CONFIG_PCI_DOMAINS": "y", "CONFIG_PCIEPORTBUS": "y", "CONFIG_HOTPLUG_PCI_PCIE": "not set", "CONFIG_PCIEAER": "not set", "CONFIG_PCIEASPM": "y", "CONFIG_PCIEASPM_DEFAULT": "y", "CONFIG_PCIEASPM_POWERSAVE": "not set", "CONFIG_PCIEASPM_POWER_SUPERSAVE": "not set", "CONFIG_PCIEASPM_PERFORMANCE": "not set", "CONFIG_PCIE_PME": "y", "CONFIG_PCIE_PTM": "not set", "CONFIG_PCI_MSI": "y", "CONFIG_PCI_QUIRKS": "y", "CONFIG_PCI_DEBUG": "not set", "CONFIG_PCI_REALLOC_ENABLE_AUTO": "not set", "CONFIG_PCI_STUB": "not set", "CONFIG_PCI_PF_STUB": "not set", "CONFIG_PCI_ATS": "y", "CONFIG_PCI_LOCKLESS_CONFIG": "y", "CONFIG_PCI_IOV": "y", "CONFIG_PCI_NPEM": "not set", "CONFIG_PCI_PRI": "y", "CONFIG_PCI_PASID": "y", "CONFIG_PCI_LABEL": "y", "CONFIG_VGA_ARB": "y", "CONFIG_VGA_ARB_MAX_GPUS": "16", "CONFIG_HOTPLUG_PCI": "y", "CONFIG_HOTPLUG_PCI_ACPI": "not set", "CONFIG_HOTPLUG_PCI_CPCI": "not set", "CONFIG_HOTPLUG_PCI_SHPC": "not set", "CONFIG_VMD": "not set", "CONFIG_PCI_MESON": "not set", "CONFIG_PCIE_DW_PLAT_HOST": "not set", "CONFIG_PCI_ENDPOINT": "not set", "CONFIG_PCI_SW_SWITCHTEC": "not set", "CONFIG_CXL_BUS": "not set", "CONFIG_PCCARD": "not set", "CONFIG_RAPIDIO": "not set", "CONFIG_AUXILIARY_BUS": "y", "CONFIG_UEVENT_HELPER": "not set", "CONFIG_DEVTMPFS": "y", "CONFIG_DEVTMPFS_MOUNT": "y", "CONFIG_DEVTMPFS_SAFE": "not set", "CONFIG_STANDALONE": "y", "CONFIG_PREVENT_FIRMWARE_BUILD": "y", "CONFIG_FW_LOADER": "y", "CONFIG_EXTRA_FIRMWARE": "\\"\\"", "CONFIG_FW_LOADER_USER_HELPER": "not set", "CONFIG_FW_LOADER_COMPRESS": "not set", "CONFIG_FW_CACHE": "y", "CONFIG_FW_UPLOAD": "not set", "CONFIG_ALLOW_DEV_COREDUMP": "y", "CONFIG_DEBUG_DRIVER": "not set", "CONFIG_DEBUG_DEVRES": "not set", "CONFIG_DEBUG_TEST_DRIVER_REMOVE": "not set", "CONFIG_TEST_ASYNC_DRIVER_PROBE": "not set", "CONFIG_GENERIC_CPU_DEVICES": "y", "CONFIG_GENERIC_CPU_AUTOPROBE": "y", "CONFIG_GENERIC_CPU_VULNERABILITIES": "y", "CONFIG_REGMAP": "y", "CONFIG_REGMAP_I2C": "m", "CONFIG_DMA_SHARED_BUFFER": "y", "CONFIG_DMA_FENCE_TRACE": "not set", "CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT": "not set", "CONFIG_MHI_BUS": "not set", "CONFIG_MHI_BUS_EP": "not set", "CONFIG_CONNECTOR": "y", "CONFIG_PROC_EVENTS": "y", "CONFIG_EDD": "not set", "CONFIG_FIRMWARE_MEMMAP": "y", "CONFIG_DMIID": "y", "CONFIG_DMI_SYSFS": "not set", "CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK": "y", "CONFIG_ISCSI_IBFT": "not set", "CONFIG_FW_CFG_SYSFS": "not set", "CONFIG_SYSFB": "y", "CONFIG_SYSFB_SIMPLEFB": "not set", "CONFIG_GOOGLE_FIRMWARE": "not set", "CONFIG_EFI_ESRT": "y", "CONFIG_EFI_DXE_MEM_ATTRIBUTES": "y", "CONFIG_EFI_RUNTIME_WRAPPERS": "y", "CONFIG_EFI_BOOTLOADER_CONTROL": "not set", "CONFIG_EFI_CAPSULE_LOADER": "not set", "CONFIG_EFI_TEST": "not set", "CONFIG_APPLE_PROPERTIES": "not set", "CONFIG_RESET_ATTACK_MITIGATION": "not set", "CONFIG_EFI_RCI2_TABLE": "not set", "CONFIG_EFI_DISABLE_PCI_DMA": "not set", "CONFIG_EFI_EARLYCON": "y", "CONFIG_EFI_CUSTOM_SSDT_OVERLAYS": "y", "CONFIG_EFI_DISABLE_RUNTIME": "not set", "CONFIG_EFI_COCO_SECRET": "not set", "CONFIG_GNSS": "not set", "CONFIG_MTD": "not set", "CONFIG_OF": "not set", "CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT": "y", "CONFIG_PARPORT": "m", "CONFIG_PARPORT_PC": "m", "CONFIG_PARPORT_SERIAL": "not set", "CONFIG_PARPORT_PC_FIFO": "not set", "CONFIG_PARPORT_PC_SUPERIO": "not set", "CONFIG_PARPORT_1284": "not set", "CONFIG_PNP": "y", "CONFIG_PNP_DEBUG_MESSAGES": "y", "CONFIG_PNPACPI": "y", "CONFIG_BLK_DEV": "y", "CONFIG_BLK_DEV_NULL_BLK": "not set", "CONFIG_BLK_DEV_FD": "m", "CONFIG_BLK_DEV_FD_RAWCMD": "not set", "CONFIG_CDROM": "y", "CONFIG_BLK_DEV_PCIESSD_MTIP32XX": "not set", "CONFIG_ZRAM": "not set", "CONFIG_BLK_DEV_LOOP": "y", "CONFIG_BLK_DEV_LOOP_MIN_COUNT": "8", "CONFIG_BLK_DEV_DRBD": "not set", "CONFIG_BLK_DEV_NBD": "m", "CONFIG_BLK_DEV_RAM": "y", "CONFIG_BLK_DEV_RAM_COUNT": "16", "CONFIG_BLK_DEV_RAM_SIZE": "4096", "CONFIG_CDROM_PKTCDVD": "not set", "CONFIG_ATA_OVER_ETH": "not set", "CONFIG_VIRTIO_BLK": "y", "CONFIG_BLK_DEV_RBD": "not set", "CONFIG_BLK_DEV_UBLK": "not set", "CONFIG_NVME_CORE": "y", "CONFIG_BLK_DEV_NVME": "y", "CONFIG_NVME_MULTIPATH": "not set", "CONFIG_NVME_VERBOSE_ERRORS": "not set", "CONFIG_NVME_HWMON": "not set", "CONFIG_NVME_FC": "not set", "CONFIG_NVME_TCP": "not set", "CONFIG_NVME_HOST_AUTH": "not set", "CONFIG_NVME_TARGET": "not set", "CONFIG_AD525X_DPOT": "not set", "CONFIG_DUMMY_IRQ": "not set", "CONFIG_IBM_ASM": "not set", "CONFIG_PHANTOM": "not set", "CONFIG_RPMB": "not set", "CONFIG_TIFM_CORE": "not set", "CONFIG_ICS932S401": "not set", "CONFIG_ENCLOSURE_SERVICES": "not set", "CONFIG_HP_ILO": "not set", "CONFIG_APDS9802ALS": "not set", "CONFIG_ISL29003": "not set", "CONFIG_ISL29020": "not set", "CONFIG_SENSORS_TSL2550": "not set", "CONFIG_SENSORS_BH1770": "not set", "CONFIG_SENSORS_APDS990X": "not set", "CONFIG_HMC6352": "not set", "CONFIG_DS1682": "not set", "CONFIG_SRAM": "not set", "CONFIG_DW_XDATA_PCIE": "not set", "CONFIG_PCI_ENDPOINT_TEST": "not set", "CONFIG_XILINX_SDFEC": "not set", "CONFIG_NSM": "not set", "CONFIG_C2PORT": "not set", "CONFIG_EEPROM_AT24": "m", "CONFIG_EEPROM_MAX6875": "not set", "CONFIG_EEPROM_93CX6": "m", "CONFIG_EEPROM_IDT_89HPESX": "not set", "CONFIG_EEPROM_EE1004": "not set", "CONFIG_CB710_CORE": "not set", "CONFIG_TI_ST": "not set", "CONFIG_SENSORS_LIS3_I2C": "not set", "CONFIG_ALTERA_STAPL": "not set", "CONFIG_INTEL_MEI": "y", "CONFIG_INTEL_MEI_ME": "y", "CONFIG_INTEL_MEI_TXE": "not set", "CONFIG_INTEL_MEI_GSC": "not set", "CONFIG_INTEL_MEI_HDCP": "not set", "CONFIG_INTEL_MEI_PXP": "not set", "CONFIG_INTEL_MEI_GSC_PROXY": "not set", "CONFIG_VMWARE_VMCI": "not set", "CONFIG_GENWQE": "not set", "CONFIG_ECHO": "not set", "CONFIG_BCM_VK": "not set", "CONFIG_MISC_ALCOR_PCI": "not set", "CONFIG_MISC_RTSX_PCI": "not set", "CONFIG_MISC_RTSX_USB": "not set", "CONFIG_UACCE": "not set", "CONFIG_PVPANIC": "not set", "CONFIG_GP_PCI1XXXX": "not set", "CONFIG_KEBA_CP500": "not set", "CONFIG_SCSI_MOD": "y", "CONFIG_RAID_ATTRS": "not set", "CONFIG_SCSI_COMMON": "y", "CONFIG_SCSI": "y", "CONFIG_SCSI_DMA": "y", "CONFIG_SCSI_PROC_FS": "y", "CONFIG_BLK_DEV_SD": "y", "CONFIG_CHR_DEV_ST": "not set", "CONFIG_BLK_DEV_SR": "y", "CONFIG_CHR_DEV_SG": "not set", "CONFIG_BLK_DEV_BSG": "y", "CONFIG_CHR_DEV_SCH": "not set", "CONFIG_SCSI_CONSTANTS": "not set", "CONFIG_SCSI_LOGGING": "not set", "CONFIG_SCSI_SCAN_ASYNC": "not set", "CONFIG_SCSI_SPI_ATTRS": "not set", "CONFIG_SCSI_FC_ATTRS": "not set", "CONFIG_SCSI_ISCSI_ATTRS": "not set", "CONFIG_SCSI_SAS_ATTRS": "not set", "CONFIG_SCSI_SAS_LIBSAS": "not set", "CONFIG_SCSI_SRP_ATTRS": "not set", "CONFIG_SCSI_LOWLEVEL": "y", "CONFIG_ISCSI_TCP": "not set", "CONFIG_ISCSI_BOOT_SYSFS": "not set", "CONFIG_SCSI_CXGB3_ISCSI": "not set", "CONFIG_SCSI_CXGB4_ISCSI": "not set", "CONFIG_SCSI_BNX2_ISCSI": "not set", "CONFIG_BE2ISCSI": "not set", "CONFIG_BLK_DEV_3W_XXXX_RAID": "not set", "CONFIG_SCSI_HPSA": "not set", "CONFIG_SCSI_3W_9XXX": "not set", "CONFIG_SCSI_3W_SAS": "not set", "CONFIG_SCSI_ACARD": "not set", "CONFIG_SCSI_AACRAID": "not set", "CONFIG_SCSI_AIC7XXX": "not set", "CONFIG_SCSI_AIC79XX": "not set", "CONFIG_SCSI_AIC94XX": "not set", "CONFIG_SCSI_MVSAS": "not set", "CONFIG_SCSI_MVUMI": "not set", "CONFIG_SCSI_ADVANSYS": "not set", "CONFIG_SCSI_ARCMSR": "not set", "CONFIG_SCSI_ESAS2R": "not set", "CONFIG_MEGARAID_NEWGEN": "not set", "CONFIG_MEGARAID_LEGACY": "not set", "CONFIG_MEGARAID_SAS": "not set", "CONFIG_SCSI_MPT3SAS": "not set", "CONFIG_SCSI_MPT2SAS": "not set", "CONFIG_SCSI_MPI3MR": "not set", "CONFIG_SCSI_SMARTPQI": "not set", "CONFIG_SCSI_HPTIOP": "not set", "CONFIG_SCSI_BUSLOGIC": "not set", "CONFIG_SCSI_MYRB": "not set", "CONFIG_SCSI_MYRS": "not set", "CONFIG_VMWARE_PVSCSI": "not set", "CONFIG_SCSI_SNIC": "not set", "CONFIG_SCSI_DMX3191D": "not set", "CONFIG_SCSI_FDOMAIN_PCI": "not set", "CONFIG_SCSI_ISCI": "not set", "CONFIG_SCSI_IPS": "not set", "CONFIG_SCSI_INITIO": "not set", "CONFIG_SCSI_INIA100": "not set", "CONFIG_SCSI_PPA": "not set", "CONFIG_SCSI_IMM": "not set", "CONFIG_SCSI_STEX": "not set", "CONFIG_SCSI_SYM53C8XX_2": "not set", "CONFIG_SCSI_IPR": "not set", "CONFIG_SCSI_QLOGIC_1280": "not set", "CONFIG_SCSI_QLA_ISCSI": "not set", "CONFIG_SCSI_DC395x": "not set", "CONFIG_SCSI_AM53C974": "not set", "CONFIG_SCSI_WD719X": "not set", "CONFIG_SCSI_DEBUG": "m", "CONFIG_SCSI_PMCRAID": "not set", "CONFIG_SCSI_PM8001": "not set", "CONFIG_SCSI_VIRTIO": "y", "CONFIG_SCSI_DH": "not set", "CONFIG_ATA": "y", "CONFIG_SATA_HOST": "y", "CONFIG_PATA_TIMINGS": "y", "CONFIG_ATA_VERBOSE_ERROR": "y", "CONFIG_ATA_FORCE": "y", "CONFIG_ATA_ACPI": "y", "CONFIG_SATA_ZPODD": "not set", "CONFIG_SATA_PMP": "y", "CONFIG_SATA_AHCI": "y", "CONFIG_SATA_MOBILE_LPM_POLICY": "3", "CONFIG_SATA_AHCI_PLATFORM": "not set", "CONFIG_AHCI_DWC": "not set", "CONFIG_SATA_INIC162X": "not set", "CONFIG_SATA_ACARD_AHCI": "not set", "CONFIG_SATA_SIL24": "not set", "CONFIG_ATA_SFF": "y", "CONFIG_PDC_ADMA": "not set", "CONFIG_SATA_QSTOR": "not set", "CONFIG_SATA_SX4": "not set", "CONFIG_ATA_BMDMA": "y", "CONFIG_ATA_PIIX": "y", "CONFIG_SATA_MV": "not set", "CONFIG_SATA_NV": "not set", "CONFIG_SATA_PROMISE": "not set", "CONFIG_SATA_SIL": "not set", "CONFIG_SATA_SIS": "not set", "CONFIG_SATA_SVW": "not set", "CONFIG_SATA_ULI": "not set", "CONFIG_SATA_VIA": "not set", "CONFIG_SATA_VITESSE": "not set", "CONFIG_PATA_ALI": "not set", "CONFIG_PATA_AMD": "not set", "CONFIG_PATA_ARTOP": "not set", "CONFIG_PATA_ATIIXP": "not set", "CONFIG_PATA_ATP867X": "not set", "CONFIG_PATA_CMD64X": "not set", "CONFIG_PATA_CYPRESS": "not set", "CONFIG_PATA_EFAR": "not set", "CONFIG_PATA_HPT366": "not set", "CONFIG_PATA_HPT37X": "not set", "CONFIG_PATA_HPT3X2N": "not set", "CONFIG_PATA_HPT3X3": "not set", "CONFIG_PATA_IT8213": "not set", "CONFIG_PATA_IT821X": "not set", "CONFIG_PATA_JMICRON": "not set", "CONFIG_PATA_MARVELL": "not set", "CONFIG_PATA_NETCELL": "not set", "CONFIG_PATA_NINJA32": "not set", "CONFIG_PATA_NS87415": "not set", "CONFIG_PATA_OLDPIIX": "not set", "CONFIG_PATA_OPTIDMA": "not set", "CONFIG_PATA_PDC2027X": "not set", "CONFIG_PATA_PDC_OLD": "not set", "CONFIG_PATA_RADISYS": "not set", "CONFIG_PATA_RDC": "not set", "CONFIG_PATA_SCH": "y", "CONFIG_PATA_SERVERWORKS": "not set", "CONFIG_PATA_SIL680": "not set", "CONFIG_PATA_SIS": "not set", "CONFIG_PATA_TOSHIBA": "not set", "CONFIG_PATA_TRIFLEX": "not set", "CONFIG_PATA_VIA": "not set", "CONFIG_PATA_WINBOND": "not set", "CONFIG_PATA_CMD640_PCI": "not set", "CONFIG_PATA_MPIIX": "not set", "CONFIG_PATA_NS87410": "not set", "CONFIG_PATA_OPTI": "not set", "CONFIG_PATA_RZ1000": "not set", "CONFIG_PATA_PARPORT": "not set", "CONFIG_PATA_ACPI": "not set", "CONFIG_ATA_GENERIC": "not set", "CONFIG_PATA_LEGACY": "not set", "CONFIG_MD": "y", "CONFIG_BLK_DEV_MD": "y", "CONFIG_MD_AUTODETECT": "y", "CONFIG_MD_BITMAP_FILE": "y", "CONFIG_MD_LINEAR": "not set", "CONFIG_MD_RAID0": "y", "CONFIG_MD_RAID1": "y", "CONFIG_MD_RAID10": "y", "CONFIG_MD_RAID456": "y", "CONFIG_BCACHE": "not set", "CONFIG_BLK_DEV_DM_BUILTIN": "y", "CONFIG_BLK_DEV_DM": "y", "CONFIG_DM_DEBUG": "not set", "CONFIG_DM_BUFIO": "y", "CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING": "not set", "CONFIG_DM_BIO_PRISON": "m", "CONFIG_DM_PERSISTENT_DATA": "m", "CONFIG_DM_UNSTRIPED": "not set", "CONFIG_DM_CRYPT": "y", "CONFIG_DM_SNAPSHOT": "y", "CONFIG_DM_THIN_PROVISIONING": "m", "CONFIG_DM_CACHE": "not set", "CONFIG_DM_WRITECACHE": "not set", "CONFIG_DM_EBS": "not set", "CONFIG_DM_ERA": "not set", "CONFIG_DM_CLONE": "not set", "CONFIG_DM_MIRROR": "y", "CONFIG_DM_LOG_USERSPACE": "not set", "CONFIG_DM_RAID": "not set", "CONFIG_DM_ZERO": "y", "CONFIG_DM_MULTIPATH": "not set", "CONFIG_DM_DELAY": "y", "CONFIG_DM_DUST": "y", "CONFIG_DM_INIT": "not set", "CONFIG_DM_UEVENT": "not set", "CONFIG_DM_FLAKEY": "not set", "CONFIG_DM_VERITY": "not set", "CONFIG_DM_SWITCH": "not set", "CONFIG_DM_LOG_WRITES": "not set", "CONFIG_DM_INTEGRITY": "not set", "CONFIG_DM_VDO": "not set", "CONFIG_TARGET_CORE": "not set", "CONFIG_FUSION": "not set", "CONFIG_FIREWIRE": "not set", "CONFIG_FIREWIRE_NOSY": "not set", "CONFIG_MACINTOSH_DRIVERS": "not set", "CONFIG_NETDEVICES": "y", "CONFIG_MII": "y", "CONFIG_NET_CORE": "y", "CONFIG_BONDING": "m", "CONFIG_DUMMY": "m", "CONFIG_WIREGUARD": "not set", "CONFIG_EQUALIZER": "not set", "CONFIG_NET_FC": "not set", "CONFIG_IFB": "not set", "CONFIG_NET_TEAM": "m", "CONFIG_NET_TEAM_MODE_BROADCAST": "m", "CONFIG_NET_TEAM_MODE_ROUNDROBIN": "m", "CONFIG_NET_TEAM_MODE_RANDOM": "m", "CONFIG_NET_TEAM_MODE_ACTIVEBACKUP": "m", "CONFIG_NET_TEAM_MODE_LOADBALANCE": "m", "CONFIG_MACVLAN": "y", "CONFIG_MACVTAP": "not set", "CONFIG_IPVLAN_L3S": "y", "CONFIG_IPVLAN": "m", "CONFIG_IPVTAP": "not set", "CONFIG_VXLAN": "m", "CONFIG_GENEVE": "not set", "CONFIG_BAREUDP": "not set", "CONFIG_GTP": "not set", "CONFIG_PFCP": "not set", "CONFIG_AMT": "not set", "CONFIG_MACSEC": "not set", "CONFIG_NETCONSOLE": "y", "CONFIG_NETCONSOLE_EXTENDED_LOG": "not set", "CONFIG_NETPOLL": "y", "CONFIG_NET_POLL_CONTROLLER": "y", "CONFIG_TUN": "m", "CONFIG_TUN_VNET_CROSS_LE": "not set", "CONFIG_VETH": "y", "CONFIG_VIRTIO_NET": "y", "CONFIG_NLMON": "not set", "CONFIG_NETKIT": "not set", "CONFIG_ARCNET": "not set", "CONFIG_ETHERNET": "y", "CONFIG_MDIO": "m", "CONFIG_NET_VENDOR_3COM": "y", "CONFIG_VORTEX": "not set", "CONFIG_TYPHOON": "m", "CONFIG_NET_VENDOR_ADAPTEC": "y", "CONFIG_ADAPTEC_STARFIRE": "not set", "CONFIG_NET_VENDOR_AGERE": "y", "CONFIG_ET131X": "not set", "CONFIG_NET_VENDOR_ALACRITECH": "y", "CONFIG_SLICOSS": "not set", "CONFIG_NET_VENDOR_ALTEON": "y", "CONFIG_ACENIC": "not set", "CONFIG_ALTERA_TSE": "not set", "CONFIG_NET_VENDOR_AMAZON": "y", "CONFIG_ENA_ETHERNET": "not set", "CONFIG_NET_VENDOR_AMD": "y", "CONFIG_AMD8111_ETH": "not set", "CONFIG_PCNET32": "m", "CONFIG_AMD_XGBE": "not set", "CONFIG_PDS_CORE": "not set", "CONFIG_NET_VENDOR_AQUANTIA": "y", "CONFIG_AQTION": "not set", "CONFIG_NET_VENDOR_ARC": "y", "CONFIG_NET_VENDOR_ASIX": "y", "CONFIG_NET_VENDOR_ATHEROS": "y", "CONFIG_ATL2": "m", "CONFIG_ATL1": "m", "CONFIG_ATL1E": "m", "CONFIG_ATL1C": "m", "CONFIG_ALX": "m", "CONFIG_CX_ECAT": "not set", "CONFIG_NET_VENDOR_BROADCOM": "y", "CONFIG_B44": "not set", "CONFIG_BCMGENET": "not set", "CONFIG_BNX2": "not set", "CONFIG_CNIC": "not set", "CONFIG_TIGON3": "m", "CONFIG_TIGON3_HWMON": "y", "CONFIG_BNX2X": "m", "CONFIG_BNX2X_SRIOV": "y", "CONFIG_SYSTEMPORT": "not set", "CONFIG_BNXT": "m", "CONFIG_BNXT_SRIOV": "y", "CONFIG_BNXT_FLOWER_OFFLOAD": "y", "CONFIG_BNXT_HWMON": "y", "CONFIG_NET_VENDOR_CADENCE": "y", "CONFIG_MACB": "not set", "CONFIG_NET_VENDOR_CAVIUM": "y", "CONFIG_THUNDER_NIC_PF": "not set", "CONFIG_THUNDER_NIC_VF": "not set", "CONFIG_THUNDER_NIC_BGX": "not set", "CONFIG_THUNDER_NIC_RGX": "not set", "CONFIG_CAVIUM_PTP": "not set", "CONFIG_LIQUIDIO": "not set", "CONFIG_LIQUIDIO_VF": "not set", "CONFIG_NET_VENDOR_CHELSIO": "y", "CONFIG_CHELSIO_T1": "not set", "CONFIG_CHELSIO_T3": "not set", "CONFIG_CHELSIO_T4": "not set", "CONFIG_CHELSIO_T4VF": "not set", "CONFIG_NET_VENDOR_CISCO": "y", "CONFIG_ENIC": "not set", "CONFIG_NET_VENDOR_CORTINA": "y", "CONFIG_NET_VENDOR_DAVICOM": "y", "CONFIG_DNET": "not set", "CONFIG_NET_VENDOR_DEC": "y", "CONFIG_NET_TULIP": "not set", "CONFIG_NET_VENDOR_DLINK": "y", "CONFIG_DL2K": "m", "CONFIG_SUNDANCE": "not set", "CONFIG_NET_VENDOR_EMULEX": "y", "CONFIG_BE2NET": "not set", "CONFIG_NET_VENDOR_ENGLEDER": "y", "CONFIG_TSNEP": "not set", "CONFIG_NET_VENDOR_EZCHIP": "y", "CONFIG_NET_VENDOR_FUNGIBLE": "y", "CONFIG_FUN_ETH": "not set", "CONFIG_NET_VENDOR_GOOGLE": "y", "CONFIG_GVE": "not set", "CONFIG_NET_VENDOR_HUAWEI": "y", "CONFIG_HINIC": "not set", "CONFIG_NET_VENDOR_I825XX": "y", "CONFIG_NET_VENDOR_INTEL": "y", "CONFIG_E100": "y", "CONFIG_E1000": "y", "CONFIG_E1000E": "y", "CONFIG_E1000E_HWTS": "y", "CONFIG_IGB": "y", "CONFIG_IGB_HWMON": "y", "CONFIG_IGBVF": "m", "CONFIG_IXGBE": "not set", "CONFIG_IXGBEVF": "not set", "CONFIG_I40E": "not set", "CONFIG_I40EVF": "not set", "CONFIG_ICE": "not set", "CONFIG_FM10K": "not set", "CONFIG_IGC": "m", "CONFIG_IDPF": "not set", "CONFIG_JME": "m", "CONFIG_NET_VENDOR_LITEX": "y", "CONFIG_NET_VENDOR_MARVELL": "y", "CONFIG_MVMDIO": "not set", "CONFIG_SKGE": "m", "CONFIG_SKGE_DEBUG": "not set", "CONFIG_SKGE_GENESIS": "not set", "CONFIG_SKY2": "m", "CONFIG_SKY2_DEBUG": "not set", "CONFIG_OCTEON_EP": "not set", "CONFIG_OCTEON_EP_VF": "not set", "CONFIG_NET_VENDOR_MELLANOX": "y", "CONFIG_MLX4_EN": "not set", "CONFIG_MLX5_CORE": "not set", "CONFIG_MLXSW_CORE": "not set", "CONFIG_MLXFW": "not set", "CONFIG_NET_VENDOR_META": "y", "CONFIG_FBNIC": "not set", "CONFIG_NET_VENDOR_MICREL": "y", "CONFIG_KS8851_MLL": "not set", "CONFIG_KSZ884X_PCI": "not set", "CONFIG_NET_VENDOR_MICROCHIP": "y", "CONFIG_LAN743X": "not set", "CONFIG_VCAP": "not set", "CONFIG_NET_VENDOR_MICROSEMI": "y", "CONFIG_NET_VENDOR_MICROSOFT": "y", "CONFIG_NET_VENDOR_MYRI": "y", "CONFIG_MYRI10GE": "not set", "CONFIG_FEALNX": "not set", "CONFIG_NET_VENDOR_NI": "y", "CONFIG_NI_XGE_MANAGEMENT_ENET": "not set", "CONFIG_NET_VENDOR_NATSEMI": "y", "CONFIG_NATSEMI": "not set", "CONFIG_NS83820": "not set", "CONFIG_NET_VENDOR_NETERION": "y", "CONFIG_S2IO": "not set", "CONFIG_NET_VENDOR_NETRONOME": "y", "CONFIG_NFP": "not set", "CONFIG_NET_VENDOR_8390": "y", "CONFIG_NE2K_PCI": "not set", "CONFIG_NET_VENDOR_NVIDIA": "y", "CONFIG_FORCEDETH": "not set", "CONFIG_NET_VENDOR_OKI": "y", "CONFIG_ETHOC": "not set", "CONFIG_NET_VENDOR_PACKET_ENGINES": "y", "CONFIG_HAMACHI": "not set", "CONFIG_YELLOWFIN": "not set", "CONFIG_NET_VENDOR_PENSANDO": "y", "CONFIG_IONIC": "not set", "CONFIG_NET_VENDOR_QLOGIC": "y", "CONFIG_QLA3XXX": "not set", "CONFIG_QLCNIC": "not set", "CONFIG_NETXEN_NIC": "not set", "CONFIG_QED": "not set", "CONFIG_NET_VENDOR_BROCADE": "y", "CONFIG_BNA": "not set", "CONFIG_NET_VENDOR_QUALCOMM": "y", "CONFIG_QCOM_EMAC": "not set", "CONFIG_RMNET": "not set", "CONFIG_NET_VENDOR_RDC": "y", "CONFIG_R6040": "not set", "CONFIG_NET_VENDOR_REALTEK": "y", "CONFIG_ATP": "not set", "CONFIG_8139CP": "m", "CONFIG_8139TOO": "m", "CONFIG_8139TOO_PIO": "y", "CONFIG_8139TOO_TUNE_TWISTER": "not set", "CONFIG_8139TOO_8129": "not set", "CONFIG_8139_OLD_RX_RESET": "not set", "CONFIG_R8169": "m", "CONFIG_RTASE": "not set", "CONFIG_NET_VENDOR_RENESAS": "y", "CONFIG_NET_VENDOR_ROCKER": "y", "CONFIG_NET_VENDOR_SAMSUNG": "y", "CONFIG_SXGBE_ETH": "not set", "CONFIG_NET_VENDOR_SEEQ": "y", "CONFIG_NET_VENDOR_SILAN": "y", "CONFIG_SC92031": "not set", "CONFIG_NET_VENDOR_SIS": "y", "CONFIG_SIS900": "not set", "CONFIG_SIS190": "not set", "CONFIG_NET_VENDOR_SOLARFLARE": "y", "CONFIG_SFC": "not set", "CONFIG_SFC_FALCON": "not set", "CONFIG_SFC_SIENA": "not set", "CONFIG_NET_VENDOR_SMSC": "y", "CONFIG_EPIC100": "not set", "CONFIG_SMSC911X": "not set", "CONFIG_SMSC9420": "not set", "CONFIG_NET_VENDOR_SOCIONEXT": "y", "CONFIG_NET_VENDOR_STMICRO": "y", "CONFIG_STMMAC_ETH": "not set", "CONFIG_NET_VENDOR_SUN": "y", "CONFIG_HAPPYMEAL": "not set", "CONFIG_SUNGEM": "not set", "CONFIG_CASSINI": "not set", "CONFIG_NIU": "not set", "CONFIG_NET_VENDOR_SYNOPSYS": "y", "CONFIG_DWC_XLGMAC": "not set", "CONFIG_NET_VENDOR_TEHUTI": "y", "CONFIG_TEHUTI": "not set", "CONFIG_TEHUTI_TN40": "not set", "CONFIG_NET_VENDOR_TI": "y", "CONFIG_TI_CPSW_PHY_SEL": "not set", "CONFIG_TLAN": "not set", "CONFIG_NET_VENDOR_VERTEXCOM": "y", "CONFIG_NET_VENDOR_VIA": "y", "CONFIG_VIA_RHINE": "not set", "CONFIG_VIA_VELOCITY": "not set", "CONFIG_NET_VENDOR_WANGXUN": "y", "CONFIG_NGBE": "not set", "CONFIG_NET_VENDOR_WIZNET": "y", "CONFIG_WIZNET_W5100": "not set", "CONFIG_WIZNET_W5300": "not set", "CONFIG_NET_VENDOR_XILINX": "y", "CONFIG_XILINX_EMACLITE": "not set", "CONFIG_XILINX_LL_TEMAC": "not set", "CONFIG_FDDI": "not set", "CONFIG_HIPPI": "not set", "CONFIG_PHYLINK": "m", "CONFIG_PHYLIB": "m", "CONFIG_SWPHY": "y", "CONFIG_LED_TRIGGER_PHY": "not set", "CONFIG_FIXED_PHY": "m", "CONFIG_SFP": "not set", "CONFIG_AIR_EN8811H_PHY": "not set", "CONFIG_AMD_PHY": "not set", "CONFIG_ADIN_PHY": "not set", "CONFIG_ADIN1100_PHY": "not set", "CONFIG_AQUANTIA_PHY": "not set", "CONFIG_AX88796B_PHY": "m", "CONFIG_BROADCOM_PHY": "not set", "CONFIG_BCM54140_PHY": "not set", "CONFIG_BCM7XXX_PHY": "not set", "CONFIG_BCM84881_PHY": "not set", "CONFIG_BCM87XX_PHY": "not set", "CONFIG_CICADA_PHY": "not set", "CONFIG_CORTINA_PHY": "not set", "CONFIG_DAVICOM_PHY": "not set", "CONFIG_ICPLUS_PHY": "not set", "CONFIG_LXT_PHY": "not set", "CONFIG_INTEL_XWAY_PHY": "not set", "CONFIG_LSI_ET1011C_PHY": "not set", "CONFIG_MARVELL_PHY": "not set", "CONFIG_MARVELL_10G_PHY": "not set", "CONFIG_MARVELL_88Q2XXX_PHY": "not set", "CONFIG_MARVELL_88X2222_PHY": "not set", "CONFIG_MAXLINEAR_GPHY": "not set", "CONFIG_MEDIATEK_GE_PHY": "not set", "CONFIG_MICREL_PHY": "not set", "CONFIG_MICROCHIP_T1S_PHY": "not set", "CONFIG_MICROCHIP_PHY": "not set", "CONFIG_MICROCHIP_T1_PHY": "not set", "CONFIG_MICROSEMI_PHY": "not set", "CONFIG_MOTORCOMM_PHY": "not set", "CONFIG_NATIONAL_PHY": "not set", "CONFIG_NXP_CBTX_PHY": "not set", "CONFIG_NXP_C45_TJA11XX_PHY": "not set", "CONFIG_NXP_TJA11XX_PHY": "not set", "CONFIG_NCN26000_PHY": "not set", "CONFIG_QCA83XX_PHY": "not set", "CONFIG_QCA808X_PHY": "not set", "CONFIG_QSEMI_PHY": "not set", "CONFIG_REALTEK_PHY": "m", "CONFIG_RENESAS_PHY": "not set", "CONFIG_ROCKCHIP_PHY": "not set", "CONFIG_SMSC_PHY": "m", "CONFIG_STE10XP": "not set", "CONFIG_TERANETICS_PHY": "not set", "CONFIG_DP83822_PHY": "not set", "CONFIG_DP83TC811_PHY": "not set", "CONFIG_DP83848_PHY": "not set", "CONFIG_DP83867_PHY": "not set", "CONFIG_DP83869_PHY": "not set", "CONFIG_DP83TD510_PHY": "not set", "CONFIG_DP83TG720_PHY": "not set", "CONFIG_VITESSE_PHY": "not set", "CONFIG_XILINX_GMII2RGMII": "not set", "CONFIG_MDIO_DEVICE": "y", "CONFIG_MDIO_BUS": "m", "CONFIG_FWNODE_MDIO": "m", "CONFIG_ACPI_MDIO": "m", "CONFIG_MDIO_DEVRES": "m", "CONFIG_MDIO_BITBANG": "not set", "CONFIG_MDIO_BCM_UNIMAC": "not set", "CONFIG_MDIO_MVUSB": "not set", "CONFIG_MDIO_THUNDER": "not set", "CONFIG_PCS_XPCS": "not set", "CONFIG_PLIP": "not set", "CONFIG_PPP": "m", "CONFIG_PPP_BSDCOMP": "m", "CONFIG_PPP_DEFLATE": "m", "CONFIG_PPP_FILTER": "y", "CONFIG_PPP_MPPE": "not set", "CONFIG_PPP_MULTILINK": "y", "CONFIG_PPPOE": "m", "CONFIG_PPPOE_HASH_BITS_1": "not set", "CONFIG_PPPOE_HASH_BITS_2": "not set", "CONFIG_PPPOE_HASH_BITS_4": "y", "CONFIG_PPPOE_HASH_BITS_8": "not set", "CONFIG_PPPOE_HASH_BITS": "4", "CONFIG_PPTP": "not set", "CONFIG_PPPOL2TP": "m", "CONFIG_PPP_ASYNC": "m", "CONFIG_PPP_SYNC_TTY": "m", "CONFIG_SLIP": "m", "CONFIG_SLHC": "m", "CONFIG_SLIP_COMPRESSED": "y", "CONFIG_SLIP_SMART": "y", "CONFIG_SLIP_MODE_SLIP6": "y", "CONFIG_USB_NET_DRIVERS": "m", "CONFIG_USB_CATC": "not set", "CONFIG_USB_KAWETH": "m", "CONFIG_USB_PEGASUS": "m", "CONFIG_USB_RTL8150": "m", "CONFIG_USB_RTL8152": "m", "CONFIG_USB_LAN78XX": "not set", "CONFIG_USB_USBNET": "m", "CONFIG_USB_NET_AX8817X": "m", "CONFIG_USB_NET_AX88179_178A": "m", "CONFIG_USB_NET_CDCETHER": "m", "CONFIG_USB_NET_CDC_EEM": "m", "CONFIG_USB_NET_CDC_NCM": "m", "CONFIG_USB_NET_HUAWEI_CDC_NCM": "not set", "CONFIG_USB_NET_CDC_MBIM": "not set", "CONFIG_USB_NET_DM9601": "m", "CONFIG_USB_NET_SR9700": "not set", "CONFIG_USB_NET_SR9800": "not set", "CONFIG_USB_NET_SMSC75XX": "m", "CONFIG_USB_NET_SMSC95XX": "m", "CONFIG_USB_NET_GL620A": "not set", "CONFIG_USB_NET_NET1080": "m", "CONFIG_USB_NET_PLUSB": "not set", "CONFIG_USB_NET_MCS7830": "m", "CONFIG_USB_NET_RNDIS_HOST": "m", "CONFIG_USB_NET_CDC_SUBSET_ENABLE": "m", "CONFIG_USB_NET_CDC_SUBSET": "m", "CONFIG_USB_ALI_M5632": "y", "CONFIG_USB_AN2720": "y", "CONFIG_USB_BELKIN": "y", "CONFIG_USB_ARMLINUX": "y", "CONFIG_USB_EPSON2888": "not set", "CONFIG_USB_KC2190": "y", "CONFIG_USB_NET_ZAURUS": "m", "CONFIG_USB_NET_CX82310_ETH": "not set", "CONFIG_USB_NET_KALMIA": "not set", "CONFIG_USB_NET_QMI_WWAN": "not set", "CONFIG_USB_HSO": "not set", "CONFIG_USB_NET_INT51X1": "not set", "CONFIG_USB_IPHETH": "not set", "CONFIG_USB_SIERRA_NET": "not set", "CONFIG_USB_VL600": "not set", "CONFIG_USB_NET_CH9200": "not set", "CONFIG_USB_NET_AQC111": "not set", "CONFIG_USB_RTL8153_ECM": "m", "CONFIG_WLAN": "y", "CONFIG_WLAN_VENDOR_ADMTEK": "y", "CONFIG_ADM8211": "not set", "CONFIG_ATH_COMMON": "m", "CONFIG_WLAN_VENDOR_ATH": "y", "CONFIG_ATH_DEBUG": "not set", "CONFIG_ATH5K": "m", "CONFIG_ATH5K_DEBUG": "not set", "CONFIG_ATH5K_TRACER": "not set", "CONFIG_ATH5K_PCI": "y", "CONFIG_ATH9K_HW": "m", "CONFIG_ATH9K_COMMON": "m", "CONFIG_ATH9K_BTCOEX_SUPPORT": "y", "CONFIG_ATH9K": "m", "CONFIG_ATH9K_PCI": "y", "CONFIG_ATH9K_AHB": "not set", "CONFIG_ATH9K_DYNACK": "not set", "CONFIG_ATH9K_WOW": "not set", "CONFIG_ATH9K_RFKILL": "y", "CONFIG_ATH9K_CHANNEL_CONTEXT": "not set", "CONFIG_ATH9K_PCOEM": "y", "CONFIG_ATH9K_PCI_NO_EEPROM": "not set", "CONFIG_ATH9K_HTC": "not set", "CONFIG_ATH9K_HWRNG": "not set", "CONFIG_CARL9170": "not set", "CONFIG_ATH6KL": "not set", "CONFIG_AR5523": "not set", "CONFIG_WIL6210": "not set", "CONFIG_ATH10K": "not set", "CONFIG_WCN36XX": "not set", "CONFIG_ATH11K": "not set", "CONFIG_ATH12K": "not set", "CONFIG_WLAN_VENDOR_ATMEL": "y", "CONFIG_AT76C50X_USB": "not set", "CONFIG_WLAN_VENDOR_BROADCOM": "y", "CONFIG_B43": "not set", "CONFIG_B43LEGACY": "not set", "CONFIG_BRCMUTIL": "m", "CONFIG_BRCMSMAC": "m", "CONFIG_BRCMFMAC": "m", "CONFIG_BRCMFMAC_PROTO_BCDC": "y", "CONFIG_BRCMFMAC_PROTO_MSGBUF": "y", "CONFIG_BRCMFMAC_SDIO": "y", "CONFIG_BRCMFMAC_USB": "y", "CONFIG_BRCMFMAC_PCIE": "y", "CONFIG_BRCM_TRACING": "not set", "CONFIG_BRCMDBG": "not set", "CONFIG_WLAN_VENDOR_INTEL": "y", "CONFIG_IPW2100": "not set", "CONFIG_IPW2200": "not set", "CONFIG_IWL4965": "not set", "CONFIG_IWL3945": "not set", "CONFIG_IWLWIFI": "not set", "CONFIG_WLAN_VENDOR_INTERSIL": "y", "CONFIG_P54_COMMON": "not set", "CONFIG_WLAN_VENDOR_MARVELL": "y", "CONFIG_LIBERTAS": "not set", "CONFIG_LIBERTAS_THINFIRM": "not set", "CONFIG_MWIFIEX": "not set", "CONFIG_MWL8K": "not set", "CONFIG_WLAN_VENDOR_MEDIATEK": "y", "CONFIG_MT7601U": "m", "CONFIG_MT76x0U": "not set", "CONFIG_MT76x0E": "not set", "CONFIG_MT76x2E": "not set", "CONFIG_MT76x2U": "not set", "CONFIG_MT7603E": "not set", "CONFIG_MT7615E": "not set", "CONFIG_MT7663U": "not set", "CONFIG_MT7663S": "not set", "CONFIG_MT7915E": "not set", "CONFIG_MT7921E": "not set", "CONFIG_MT7921S": "not set", "CONFIG_MT7921U": "not set", "CONFIG_MT7996E": "not set", "CONFIG_MT7925E": "not set", "CONFIG_MT7925U": "not set", "CONFIG_WLAN_VENDOR_MICROCHIP": "y", "CONFIG_WILC1000_SDIO": "not set", "CONFIG_WLAN_VENDOR_PURELIFI": "y", "CONFIG_PLFXLC": "not set", "CONFIG_WLAN_VENDOR_RALINK": "y", "CONFIG_RT2X00": "m", "CONFIG_RT2400PCI": "not set", "CONFIG_RT2500PCI": "not set", "CONFIG_RT61PCI": "not set", "CONFIG_RT2800PCI": "m", "CONFIG_RT2800PCI_RT33XX": "y", "CONFIG_RT2800PCI_RT35XX": "y", "CONFIG_RT2800PCI_RT53XX": "y", "CONFIG_RT2800PCI_RT3290": "y", "CONFIG_RT2500USB": "not set", "CONFIG_RT73USB": "not set", "CONFIG_RT2800USB": "not set", "CONFIG_RT2800_LIB": "m", "CONFIG_RT2800_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_MMIO": "m", "CONFIG_RT2X00_LIB_PCI": "m", "CONFIG_RT2X00_LIB": "m", "CONFIG_RT2X00_LIB_FIRMWARE": "y", "CONFIG_RT2X00_LIB_CRYPTO": "y", "CONFIG_RT2X00_LIB_LEDS": "y", "CONFIG_RT2X00_DEBUG": "not set", "CONFIG_WLAN_VENDOR_REALTEK": "y", "CONFIG_RTL8180": "not set", "CONFIG_RTL8187": "not set", "CONFIG_RTL_CARDS": "m", "CONFIG_RTL8192CE": "not set", "CONFIG_RTL8192SE": "not set", "CONFIG_RTL8192DE": "not set", "CONFIG_RTL8723AE": "not set", "CONFIG_RTL8723BE": "not set", "CONFIG_RTL8188EE": "not set", "CONFIG_RTL8192EE": "not set", "CONFIG_RTL8821AE": "not set", "CONFIG_RTL8192CU": "not set", "CONFIG_RTL8192DU": "not set", "CONFIG_RTL8XXXU": "not set", "CONFIG_RTW88": "not set", "CONFIG_RTW89": "not set", "CONFIG_WLAN_VENDOR_RSI": "y", "CONFIG_RSI_91X": "not set", "CONFIG_WLAN_VENDOR_SILABS": "y", "CONFIG_WFX": "not set", "CONFIG_WLAN_VENDOR_ST": "y", "CONFIG_CW1200": "not set", "CONFIG_WLAN_VENDOR_TI": "y", "CONFIG_WL1251": "not set", "CONFIG_WL12XX": "not set", "CONFIG_WL18XX": "not set", "CONFIG_WLCORE": "not set", "CONFIG_WLAN_VENDOR_ZYDAS": "y", "CONFIG_ZD1211RW": "not set", "CONFIG_WLAN_VENDOR_QUANTENNA": "y", "CONFIG_QTNFMAC_PCIE": "not set", "CONFIG_MAC80211_HWSIM": "not set", "CONFIG_VIRT_WIFI": "not set", "CONFIG_WAN": "not set", "CONFIG_WWAN": "not set", "CONFIG_VMXNET3": "not set", "CONFIG_FUJITSU_ES": "not set", "CONFIG_NETDEVSIM": "not set", "CONFIG_NET_FAILOVER": "y", "CONFIG_ISDN": "y", "CONFIG_ISDN_CAPI": "y", "CONFIG_MISDN": "not set", "CONFIG_INPUT": "y", "CONFIG_INPUT_LEDS": "y", "CONFIG_INPUT_FF_MEMLESS": "y", "CONFIG_INPUT_SPARSEKMAP": "not set", "CONFIG_INPUT_MATRIXKMAP": "not set", "CONFIG_INPUT_VIVALDIFMAP": "y", "CONFIG_INPUT_MOUSEDEV": "y", "CONFIG_INPUT_MOUSEDEV_PSAUX": "not set", "CONFIG_INPUT_MOUSEDEV_SCREEN_X": "1024", "CONFIG_INPUT_MOUSEDEV_SCREEN_Y": "768", "CONFIG_INPUT_JOYDEV": "not set", "CONFIG_INPUT_EVDEV": "y", "CONFIG_INPUT_EVBUG": "not set", "CONFIG_INPUT_KEYBOARD": "y", "CONFIG_KEYBOARD_ADP5588": "not set", "CONFIG_KEYBOARD_ADP5589": "not set", "CONFIG_KEYBOARD_ATKBD": "y", "CONFIG_KEYBOARD_QT1050": "not set", "CONFIG_KEYBOARD_QT1070": "not set", "CONFIG_KEYBOARD_QT2160": "not set", "CONFIG_KEYBOARD_DLINK_DIR685": "not set", "CONFIG_KEYBOARD_LKKBD": "not set", "CONFIG_KEYBOARD_GPIO": "not set", "CONFIG_KEYBOARD_GPIO_POLLED": "not set", "CONFIG_KEYBOARD_TCA6416": "not set", "CONFIG_KEYBOARD_TCA8418": "not set", "CONFIG_KEYBOARD_MATRIX": "not set", "CONFIG_KEYBOARD_LM8323": "not set", "CONFIG_KEYBOARD_LM8333": "not set", "CONFIG_KEYBOARD_MAX7359": "not set", "CONFIG_KEYBOARD_MPR121": "not set", "CONFIG_KEYBOARD_NEWTON": "not set", "CONFIG_KEYBOARD_OPENCORES": "not set", "CONFIG_KEYBOARD_SAMSUNG": "not set", "CONFIG_KEYBOARD_STOWAWAY": "not set", "CONFIG_KEYBOARD_SUNKBD": "not set", "CONFIG_KEYBOARD_TM2_TOUCHKEY": "not set", "CONFIG_KEYBOARD_XTKBD": "not set", "CONFIG_KEYBOARD_CYPRESS_SF": "not set", "CONFIG_INPUT_MOUSE": "y", "CONFIG_MOUSE_PS2": "y", "CONFIG_MOUSE_PS2_ALPS": "y", "CONFIG_MOUSE_PS2_BYD": "y", "CONFIG_MOUSE_PS2_LOGIPS2PP": "y", "CONFIG_MOUSE_PS2_SYNAPTICS": "y", "CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS": "y", "CONFIG_MOUSE_PS2_CYPRESS": "y", "CONFIG_MOUSE_PS2_LIFEBOOK": "y", "CONFIG_MOUSE_PS2_TRACKPOINT": "y", "CONFIG_MOUSE_PS2_ELANTECH": "not set", "CONFIG_MOUSE_PS2_SENTELIC": "not set", "CONFIG_MOUSE_PS2_TOUCHKIT": "not set", "CONFIG_MOUSE_PS2_FOCALTECH": "y", "CONFIG_MOUSE_PS2_VMMOUSE": "not set", "CONFIG_MOUSE_PS2_SMBUS": "y", "CONFIG_MOUSE_SERIAL": "not set", "CONFIG_MOUSE_APPLETOUCH": "not set", "CONFIG_MOUSE_BCM5974": "not set", "CONFIG_MOUSE_CYAPA": "not set", "CONFIG_MOUSE_ELAN_I2C": "not set", "CONFIG_MOUSE_VSXXXAA": "not set", "CONFIG_MOUSE_GPIO": "not set", "CONFIG_MOUSE_SYNAPTICS_I2C": "not set", "CONFIG_MOUSE_SYNAPTICS_USB": "not set", "CONFIG_INPUT_JOYSTICK": "not set", "CONFIG_INPUT_TABLET": "y", "CONFIG_TABLET_USB_ACECAD": "not set", "CONFIG_TABLET_USB_AIPTEK": "not set", "CONFIG_TABLET_USB_HANWANG": "not set", "CONFIG_TABLET_USB_KBTAB": "not set", "CONFIG_TABLET_USB_PEGASUS": "not set", "CONFIG_TABLET_SERIAL_WACOM4": "not set", "CONFIG_INPUT_TOUCHSCREEN": "y", "CONFIG_TOUCHSCREEN_AD7879": "not set", "CONFIG_TOUCHSCREEN_ATMEL_MXT": "not set", "CONFIG_TOUCHSCREEN_AUO_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_BU21013": "not set", "CONFIG_TOUCHSCREEN_BU21029": "not set", "CONFIG_TOUCHSCREEN_CHIPONE_ICN8505": "not set", "CONFIG_TOUCHSCREEN_CY8CTMA140": "not set", "CONFIG_TOUCHSCREEN_CY8CTMG110": "not set", "CONFIG_TOUCHSCREEN_CYTTSP_CORE": "not set", "CONFIG_TOUCHSCREEN_CYTTSP5": "not set", "CONFIG_TOUCHSCREEN_DYNAPRO": "not set", "CONFIG_TOUCHSCREEN_HAMPSHIRE": "not set", "CONFIG_TOUCHSCREEN_EETI": "not set", "CONFIG_TOUCHSCREEN_EGALAX_SERIAL": "not set", "CONFIG_TOUCHSCREEN_EXC3000": "not set", "CONFIG_TOUCHSCREEN_FUJITSU": "not set", "CONFIG_TOUCHSCREEN_GOODIX": "not set", "CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C": "not set", "CONFIG_TOUCHSCREEN_HIDEEP": "not set", "CONFIG_TOUCHSCREEN_HYCON_HY46XX": "not set", "CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX": "not set", "CONFIG_TOUCHSCREEN_ILI210X": "not set", "CONFIG_TOUCHSCREEN_ILITEK": "not set", "CONFIG_TOUCHSCREEN_S6SY761": "not set", "CONFIG_TOUCHSCREEN_GUNZE": "not set", "CONFIG_TOUCHSCREEN_EKTF2127": "not set", "CONFIG_TOUCHSCREEN_ELAN": "not set", "CONFIG_TOUCHSCREEN_ELO": "not set", "CONFIG_TOUCHSCREEN_WACOM_W8001": "not set", "CONFIG_TOUCHSCREEN_WACOM_I2C": "not set", "CONFIG_TOUCHSCREEN_MAX11801": "not set", "CONFIG_TOUCHSCREEN_MMS114": "not set", "CONFIG_TOUCHSCREEN_MELFAS_MIP4": "not set", "CONFIG_TOUCHSCREEN_MSG2638": "not set", "CONFIG_TOUCHSCREEN_MTOUCH": "not set", "CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS": "not set", "CONFIG_TOUCHSCREEN_IMAGIS": "not set", "CONFIG_TOUCHSCREEN_INEXIO": "not set", "CONFIG_TOUCHSCREEN_PENMOUNT": "not set", "CONFIG_TOUCHSCREEN_EDT_FT5X06": "not set", "CONFIG_TOUCHSCREEN_TOUCHRIGHT": "not set", "CONFIG_TOUCHSCREEN_TOUCHWIN": "not set", "CONFIG_TOUCHSCREEN_PIXCIR": "not set", "CONFIG_TOUCHSCREEN_WDT87XX_I2C": "not set", "CONFIG_TOUCHSCREEN_WM97XX": "not set", "CONFIG_TOUCHSCREEN_USB_COMPOSITE": "m", "CONFIG_TOUCHSCREEN_USB_EGALAX": "y", "CONFIG_TOUCHSCREEN_USB_PANJIT": "y", "CONFIG_TOUCHSCREEN_USB_3M": "y", "CONFIG_TOUCHSCREEN_USB_ITM": "y", "CONFIG_TOUCHSCREEN_USB_ETURBO": "y", "CONFIG_TOUCHSCREEN_USB_GUNZE": "y", "CONFIG_TOUCHSCREEN_USB_DMC_TSC10": "y", "CONFIG_TOUCHSCREEN_USB_IRTOUCH": "y", "CONFIG_TOUCHSCREEN_USB_IDEALTEK": "y", "CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH": "y", "CONFIG_TOUCHSCREEN_USB_GOTOP": "y", "CONFIG_TOUCHSCREEN_USB_JASTEC": "y", "CONFIG_TOUCHSCREEN_USB_ELO": "y", "CONFIG_TOUCHSCREEN_USB_E2I": "y", "CONFIG_TOUCHSCREEN_USB_ZYTRONIC": "y", "CONFIG_TOUCHSCREEN_USB_ETT_TC45USB": "y", "CONFIG_TOUCHSCREEN_USB_NEXIO": "y", "CONFIG_TOUCHSCREEN_USB_EASYTOUCH": "y", "CONFIG_TOUCHSCREEN_TOUCHIT213": "not set", "CONFIG_TOUCHSCREEN_TSC_SERIO": "not set", "CONFIG_TOUCHSCREEN_TSC2004": "not set", "CONFIG_TOUCHSCREEN_TSC2007": "not set", "CONFIG_TOUCHSCREEN_RM_TS": "not set", "CONFIG_TOUCHSCREEN_SILEAD": "not set", "CONFIG_TOUCHSCREEN_SIS_I2C": "not set", "CONFIG_TOUCHSCREEN_ST1232": "not set", "CONFIG_TOUCHSCREEN_STMFTS": "not set", "CONFIG_TOUCHSCREEN_SUR40": "not set", "CONFIG_TOUCHSCREEN_SX8654": "not set", "CONFIG_TOUCHSCREEN_TPS6507X": "not set", "CONFIG_TOUCHSCREEN_ZET6223": "not set", "CONFIG_TOUCHSCREEN_ZFORCE": "not set", "CONFIG_TOUCHSCREEN_ROHM_BU21023": "not set", "CONFIG_TOUCHSCREEN_IQS5XX": "not set", "CONFIG_TOUCHSCREEN_IQS7211": "not set", "CONFIG_TOUCHSCREEN_ZINITIX": "not set", "CONFIG_TOUCHSCREEN_HIMAX_HX83112B": "not set", "CONFIG_INPUT_MISC": "y", "CONFIG_INPUT_AD714X": "not set", "CONFIG_INPUT_BMA150": "not set", "CONFIG_INPUT_E3X0_BUTTON": "not set", "CONFIG_INPUT_PCSPKR": "not set", "CONFIG_INPUT_MMA8450": "not set", "CONFIG_INPUT_APANEL": "not set", "CONFIG_INPUT_GPIO_BEEPER": "not set", "CONFIG_INPUT_GPIO_DECODER": "not set", "CONFIG_INPUT_GPIO_VIBRA": "not set", "CONFIG_INPUT_ATLAS_BTNS": "not set", "CONFIG_INPUT_ATI_REMOTE2": "not set", "CONFIG_INPUT_KEYSPAN_REMOTE": "not set", "CONFIG_INPUT_KXTJ9": "not set", "CONFIG_INPUT_POWERMATE": "not set", "CONFIG_INPUT_YEALINK": "not set", "CONFIG_INPUT_CM109": "not set", "CONFIG_INPUT_UINPUT": "y", "CONFIG_INPUT_PCF8574": "not set", "CONFIG_INPUT_GPIO_ROTARY_ENCODER": "not set", "CONFIG_INPUT_DA7280_HAPTICS": "not set", "CONFIG_INPUT_ADXL34X": "not set", "CONFIG_INPUT_IMS_PCU": "not set", "CONFIG_INPUT_IQS269A": "not set", "CONFIG_INPUT_IQS626A": "not set", "CONFIG_INPUT_IQS7222": "not set", "CONFIG_INPUT_CMA3000": "not set", "CONFIG_INPUT_IDEAPAD_SLIDEBAR": "not set", "CONFIG_INPUT_DRV260X_HAPTICS": "not set", "CONFIG_INPUT_DRV2665_HAPTICS": "not set", "CONFIG_INPUT_DRV2667_HAPTICS": "not set", "CONFIG_RMI4_CORE": "not set", "CONFIG_SERIO": "y", "CONFIG_ARCH_MIGHT_HAVE_PC_SERIO": "y", "CONFIG_SERIO_I8042": "y", "CONFIG_SERIO_SERPORT": "y", "CONFIG_SERIO_CT82C710": "not set", "CONFIG_SERIO_PARKBD": "not set", "CONFIG_SERIO_PCIPS2": "not set", "CONFIG_SERIO_LIBPS2": "y", "CONFIG_SERIO_RAW": "not set", "CONFIG_SERIO_ALTERA_PS2": "not set", "CONFIG_SERIO_PS2MULT": "not set", "CONFIG_SERIO_ARC_PS2": "not set", "CONFIG_SERIO_GPIO_PS2": "not set", "CONFIG_USERIO": "not set", "CONFIG_GAMEPORT": "not set", "CONFIG_TTY": "y", "CONFIG_VT": "y", "CONFIG_CONSOLE_TRANSLATIONS": "y", "CONFIG_VT_CONSOLE": "y", "CONFIG_VT_CONSOLE_SLEEP": "y", "CONFIG_VT_HW_CONSOLE_BINDING": "y", "CONFIG_UNIX98_PTYS": "y", "CONFIG_LEGACY_PTYS": "not set", "CONFIG_LEGACY_TIOCSTI": "y", "CONFIG_LDISC_AUTOLOAD": "y", "CONFIG_SERIAL_EARLYCON": "y", "CONFIG_SERIAL_8250": "y", "CONFIG_SERIAL_8250_DEPRECATED_OPTIONS": "y", "CONFIG_SERIAL_8250_PNP": "y", "CONFIG_SERIAL_8250_16550A_VARIANTS": "not set", "CONFIG_SERIAL_8250_FINTEK": "not set", "CONFIG_SERIAL_8250_CONSOLE": "y", "CONFIG_SERIAL_8250_PCILIB": "y", "CONFIG_SERIAL_8250_PCI": "y", "CONFIG_SERIAL_8250_EXAR": "y", "CONFIG_SERIAL_8250_NR_UARTS": "4", "CONFIG_SERIAL_8250_RUNTIME_UARTS": "4", "CONFIG_SERIAL_8250_EXTENDED": "not set", "CONFIG_SERIAL_8250_PCI1XXXX": "not set", "CONFIG_SERIAL_8250_DWLIB": "y", "CONFIG_SERIAL_8250_DW": "not set", "CONFIG_SERIAL_8250_RT288X": "not set", "CONFIG_SERIAL_8250_LPSS": "y", "CONFIG_SERIAL_8250_MID": "y", "CONFIG_SERIAL_8250_PERICOM": "y", "CONFIG_SERIAL_KGDB_NMI": "not set", "CONFIG_SERIAL_UARTLITE": "not set", "CONFIG_SERIAL_CORE": "y", "CONFIG_SERIAL_CORE_CONSOLE": "y", "CONFIG_CONSOLE_POLL": "y", "CONFIG_SERIAL_JSM": "not set", "CONFIG_SERIAL_LANTIQ": "not set", "CONFIG_SERIAL_SCCNXP": "not set", "CONFIG_SERIAL_SC16IS7XX": "not set", "CONFIG_SERIAL_ALTERA_JTAGUART": "not set", "CONFIG_SERIAL_ALTERA_UART": "not set", "CONFIG_SERIAL_ARC": "not set", "CONFIG_SERIAL_RP2": "not set", "CONFIG_SERIAL_FSL_LPUART": "not set", "CONFIG_SERIAL_FSL_LINFLEXUART": "not set", "CONFIG_SERIAL_SPRD": "not set", "CONFIG_SERIAL_MCTRL_GPIO": "y", "CONFIG_SERIAL_NONSTANDARD": "not set", "CONFIG_N_GSM": "not set", "CONFIG_NOZOMI": "not set", "CONFIG_NULL_TTY": "not set", "CONFIG_HVC_DRIVER": "y", "CONFIG_SERIAL_DEV_BUS": "not set", "CONFIG_PRINTER": "m", "CONFIG_LP_CONSOLE": "not set", "CONFIG_PPDEV": "not set", "CONFIG_VIRTIO_CONSOLE": "y", "CONFIG_IPMI_HANDLER": "not set", "CONFIG_HW_RANDOM": "y", "CONFIG_HW_RANDOM_TIMERIOMEM": "not set", "CONFIG_HW_RANDOM_INTEL": "y", "CONFIG_HW_RANDOM_AMD": "y", "CONFIG_HW_RANDOM_BA431": "not set", "CONFIG_HW_RANDOM_VIA": "y", "CONFIG_HW_RANDOM_VIRTIO": "y", "CONFIG_HW_RANDOM_XIPHERA": "not set", "CONFIG_APPLICOM": "not set", "CONFIG_MWAVE": "not set", "CONFIG_DEVMEM": "y", "CONFIG_NVRAM": "not set", "CONFIG_DEVPORT": "y", "CONFIG_HPET": "y", "CONFIG_HPET_MMAP": "y", "CONFIG_HPET_MMAP_DEFAULT": "y", "CONFIG_HANGCHECK_TIMER": "not set", "CONFIG_TCG_TPM": "not set", "CONFIG_TELCLOCK": "not set", "CONFIG_XILLYBUS": "not set", "CONFIG_XILLYUSB": "not set", "CONFIG_I2C": "y", "CONFIG_ACPI_I2C_OPREGION": "y", "CONFIG_I2C_BOARDINFO": "y", "CONFIG_I2C_CHARDEV": "not set", "CONFIG_I2C_MUX": "m", "CONFIG_I2C_MUX_GPIO": "not set", "CONFIG_I2C_MUX_LTC4306": "not set", "CONFIG_I2C_MUX_PCA9541": "not set", "CONFIG_I2C_MUX_PCA954x": "not set", "CONFIG_I2C_MUX_REG": "not set", "CONFIG_I2C_MUX_MLXCPLD": "not set", "CONFIG_I2C_HELPER_AUTO": "y", "CONFIG_I2C_SMBUS": "y", "CONFIG_I2C_ALGOBIT": "y", "CONFIG_I2C_ALI1535": "not set", "CONFIG_I2C_ALI1563": "not set", "CONFIG_I2C_ALI15X3": "not set", "CONFIG_I2C_AMD756": "not set", "CONFIG_I2C_AMD8111": "not set", "CONFIG_I2C_AMD_MP2": "not set", "CONFIG_I2C_I801": "y", "CONFIG_I2C_ISCH": "not set", "CONFIG_I2C_ISMT": "not set", "CONFIG_I2C_PIIX4": "not set", "CONFIG_I2C_NFORCE2": "not set", "CONFIG_I2C_NVIDIA_GPU": "not set", "CONFIG_I2C_SIS5595": "not set", "CONFIG_I2C_SIS630": "not set", "CONFIG_I2C_SIS96X": "not set", "CONFIG_I2C_VIA": "not set", "CONFIG_I2C_VIAPRO": "not set", "CONFIG_I2C_ZHAOXIN": "not set", "CONFIG_I2C_SCMI": "not set", "CONFIG_I2C_CBUS_GPIO": "not set", "CONFIG_I2C_DESIGNWARE_CORE": "not set", "CONFIG_I2C_EMEV2": "not set", "CONFIG_I2C_GPIO": "not set", "CONFIG_I2C_OCORES": "not set", "CONFIG_I2C_PCA_PLATFORM": "not set", "CONFIG_I2C_SIMTEC": "not set", "CONFIG_I2C_XILINX": "not set", "CONFIG_I2C_DIOLAN_U2C": "not set", "CONFIG_I2C_CP2615": "not set", "CONFIG_I2C_PARPORT": "not set", "CONFIG_I2C_PCI1XXXX": "not set", "CONFIG_I2C_ROBOTFUZZ_OSIF": "not set", "CONFIG_I2C_TAOS_EVM": "not set", "CONFIG_I2C_TINY_USB": "not set", "CONFIG_I2C_MLXCPLD": "not set", "CONFIG_I2C_VIRTIO": "not set", "CONFIG_I2C_STUB": "not set", "CONFIG_I2C_SLAVE": "not set", "CONFIG_I2C_DEBUG_CORE": "not set", "CONFIG_I2C_DEBUG_ALGO": "not set", "CONFIG_I2C_DEBUG_BUS": "not set", "CONFIG_I3C": "not set", "CONFIG_SPI": "not set", "CONFIG_SPMI": "not set", "CONFIG_HSI": "not set", "CONFIG_PPS": "y", "CONFIG_PPS_DEBUG": "not set", "CONFIG_PPS_CLIENT_KTIMER": "not set", "CONFIG_PPS_CLIENT_LDISC": "not set", "CONFIG_PPS_CLIENT_PARPORT": "not set", "CONFIG_PPS_CLIENT_GPIO": "not set", "CONFIG_PTP_1588_CLOCK": "y", "CONFIG_PTP_1588_CLOCK_OPTIONAL": "y", "CONFIG_PTP_1588_CLOCK_KVM": "y", "CONFIG_PTP_1588_CLOCK_IDT82P33": "not set", "CONFIG_PTP_1588_CLOCK_IDTCM": "not set", "CONFIG_PTP_1588_CLOCK_FC3W": "not set", "CONFIG_PTP_1588_CLOCK_MOCK": "not set", "CONFIG_PTP_1588_CLOCK_VMW": "not set", "CONFIG_PINCTRL": "y", "CONFIG_DEBUG_PINCTRL": "not set", "CONFIG_PINCTRL_AMD": "not set", "CONFIG_PINCTRL_CY8C95X0": "not set", "CONFIG_PINCTRL_MCP23S08": "not set", "CONFIG_PINCTRL_SX150X": "not set", "CONFIG_PINCTRL_BAYTRAIL": "not set", "CONFIG_PINCTRL_CHERRYVIEW": "not set", "CONFIG_PINCTRL_LYNXPOINT": "not set", "CONFIG_PINCTRL_INTEL_PLATFORM": "not set", "CONFIG_PINCTRL_ALDERLAKE": "not set", "CONFIG_PINCTRL_BROXTON": "not set", "CONFIG_PINCTRL_CANNONLAKE": "not set", "CONFIG_PINCTRL_CEDARFORK": "not set", "CONFIG_PINCTRL_DENVERTON": "not set", "CONFIG_PINCTRL_ELKHARTLAKE": "not set", "CONFIG_PINCTRL_EMMITSBURG": "not set", "CONFIG_PINCTRL_GEMINILAKE": "not set", "CONFIG_PINCTRL_ICELAKE": "not set", "CONFIG_PINCTRL_JASPERLAKE": "not set", "CONFIG_PINCTRL_LAKEFIELD": "not set", "CONFIG_PINCTRL_LEWISBURG": "not set", "CONFIG_PINCTRL_METEORLAKE": "not set", "CONFIG_PINCTRL_METEORPOINT": "not set", "CONFIG_PINCTRL_SUNRISEPOINT": "not set", "CONFIG_PINCTRL_TIGERLAKE": "not set", "CONFIG_GPIOLIB": "y", "CONFIG_GPIOLIB_FASTPATH_LIMIT": "512", "CONFIG_GPIO_ACPI": "y", "CONFIG_DEBUG_GPIO": "not set", "CONFIG_GPIO_CDEV": "y", "CONFIG_GPIO_CDEV_V1": "y", "CONFIG_GPIO_AMDPT": "not set", "CONFIG_GPIO_DWAPB": "not set", "CONFIG_GPIO_EXAR": "not set", "CONFIG_GPIO_GENERIC_PLATFORM": "not set", "CONFIG_GPIO_GRANITERAPIDS": "not set", "CONFIG_GPIO_MB86S7X": "not set", "CONFIG_GPIO_AMD_FCH": "not set", "CONFIG_GPIO_VX855": "not set", "CONFIG_GPIO_F7188X": "not set", "CONFIG_GPIO_IT87": "not set", "CONFIG_GPIO_SCH311X": "not set", "CONFIG_GPIO_WINBOND": "not set", "CONFIG_GPIO_WS16C48": "not set", "CONFIG_GPIO_FXL6408": "not set", "CONFIG_GPIO_DS4520": "not set", "CONFIG_GPIO_MAX7300": "not set", "CONFIG_GPIO_MAX732X": "not set", "CONFIG_GPIO_PCA953X": "not set", "CONFIG_GPIO_PCA9570": "not set", "CONFIG_GPIO_PCF857X": "not set", "CONFIG_GPIO_TPIC2810": "not set", "CONFIG_GPIO_ELKHARTLAKE": "not set", "CONFIG_GPIO_AMD8111": "not set", "CONFIG_GPIO_BT8XX": "not set", "CONFIG_GPIO_ML_IOH": "not set", "CONFIG_GPIO_PCI_IDIO_16": "not set", "CONFIG_GPIO_PCIE_IDIO_24": "not set", "CONFIG_GPIO_RDC321X": "not set", "CONFIG_GPIO_AGGREGATOR": "not set", "CONFIG_GPIO_LATCH": "not set", "CONFIG_GPIO_MOCKUP": "m", "CONFIG_GPIO_VIRTIO": "not set", "CONFIG_GPIO_SIM": "m", "CONFIG_GPIO_VIRTUSER": "not set", "CONFIG_W1": "not set", "CONFIG_POWER_RESET": "not set", "CONFIG_POWER_SEQUENCING": "not set", "CONFIG_POWER_SUPPLY": "y", "CONFIG_POWER_SUPPLY_DEBUG": "not set", "CONFIG_POWER_SUPPLY_HWMON": "y", "CONFIG_IP5XXX_POWER": "not set", "CONFIG_TEST_POWER": "not set", "CONFIG_CHARGER_ADP5061": "not set", "CONFIG_BATTERY_CW2015": "not set", "CONFIG_BATTERY_DS2780": "not set", "CONFIG_BATTERY_DS2781": "not set", "CONFIG_BATTERY_DS2782": "not set", "CONFIG_BATTERY_SAMSUNG_SDI": "not set", "CONFIG_BATTERY_SBS": "not set", "CONFIG_CHARGER_SBS": "not set", "CONFIG_MANAGER_SBS": "not set", "CONFIG_BATTERY_BQ27XXX": "not set", "CONFIG_BATTERY_MAX17042": "not set", "CONFIG_BATTERY_MAX1720X": "not set", "CONFIG_CHARGER_MAX8903": "not set", "CONFIG_CHARGER_LP8727": "not set", "CONFIG_CHARGER_GPIO": "not set", "CONFIG_CHARGER_LT3651": "not set", "CONFIG_CHARGER_LTC4162L": "not set", "CONFIG_CHARGER_MAX77976": "not set", "CONFIG_CHARGER_BQ2415X": "not set", "CONFIG_CHARGER_BQ24257": "not set", "CONFIG_CHARGER_BQ24735": "not set", "CONFIG_CHARGER_BQ2515X": "not set", "CONFIG_CHARGER_BQ25890": "not set", "CONFIG_CHARGER_BQ25980": "not set", "CONFIG_CHARGER_BQ256XX": "not set", "CONFIG_BATTERY_GAUGE_LTC2941": "not set", "CONFIG_BATTERY_GOLDFISH": "not set", "CONFIG_BATTERY_RT5033": "not set", "CONFIG_CHARGER_RT9455": "not set", "CONFIG_CHARGER_BD99954": "not set", "CONFIG_BATTERY_UG3105": "not set", "CONFIG_FUEL_GAUGE_MM8013": "not set", "CONFIG_HWMON": "y", "CONFIG_HWMON_DEBUG_CHIP": "not set", "CONFIG_SENSORS_ABITUGURU": "not set", "CONFIG_SENSORS_ABITUGURU3": "not set", "CONFIG_SENSORS_AD7414": "not set", "CONFIG_SENSORS_AD7418": "not set", "CONFIG_SENSORS_ADM1025": "not set", "CONFIG_SENSORS_ADM1026": "not set", "CONFIG_SENSORS_ADM1029": "not set", "CONFIG_SENSORS_ADM1031": "not set", "CONFIG_SENSORS_ADM1177": "not set", "CONFIG_SENSORS_ADM9240": "not set", "CONFIG_SENSORS_ADT7410": "not set", "CONFIG_SENSORS_ADT7411": "not set", "CONFIG_SENSORS_ADT7462": "not set", "CONFIG_SENSORS_ADT7470": "not set", "CONFIG_SENSORS_ADT7475": "not set", "CONFIG_SENSORS_AHT10": "not set", "CONFIG_SENSORS_AQUACOMPUTER_D5NEXT": "not set", "CONFIG_SENSORS_AS370": "not set", "CONFIG_SENSORS_ASC7621": "not set", "CONFIG_SENSORS_ASUS_ROG_RYUJIN": "not set", "CONFIG_SENSORS_AXI_FAN_CONTROL": "not set", "CONFIG_SENSORS_K8TEMP": "not set", "CONFIG_SENSORS_K10TEMP": "not set", "CONFIG_SENSORS_FAM15H_POWER": "not set", "CONFIG_SENSORS_APPLESMC": "not set", "CONFIG_SENSORS_ASB100": "not set", "CONFIG_SENSORS_ATXP1": "not set", "CONFIG_SENSORS_CHIPCAP2": "not set", "CONFIG_SENSORS_CORSAIR_CPRO": "not set", "CONFIG_SENSORS_CORSAIR_PSU": "not set", "CONFIG_SENSORS_DRIVETEMP": "not set", "CONFIG_SENSORS_DS620": "not set", "CONFIG_SENSORS_DS1621": "not set", "CONFIG_SENSORS_DELL_SMM": "not set", "CONFIG_SENSORS_I5K_AMB": "not set", "CONFIG_SENSORS_F71805F": "not set", "CONFIG_SENSORS_F71882FG": "not set", "CONFIG_SENSORS_F75375S": "not set", "CONFIG_SENSORS_FSCHMD": "not set", "CONFIG_SENSORS_FTSTEUTATES": "not set", "CONFIG_SENSORS_GIGABYTE_WATERFORCE": "not set", "CONFIG_SENSORS_GL518SM": "not set", "CONFIG_SENSORS_GL520SM": "not set", "CONFIG_SENSORS_G760A": "not set", "CONFIG_SENSORS_G762": "not set", "CONFIG_SENSORS_HIH6130": "not set", "CONFIG_SENSORS_HS3001": "not set", "CONFIG_SENSORS_I5500": "not set", "CONFIG_SENSORS_CORETEMP": "not set", "CONFIG_SENSORS_IT87": "not set", "CONFIG_SENSORS_JC42": "not set", "CONFIG_SENSORS_POWERZ": "not set", "CONFIG_SENSORS_POWR1220": "not set", "CONFIG_SENSORS_LENOVO_EC": "not set", "CONFIG_SENSORS_LINEAGE": "not set", "CONFIG_SENSORS_LTC2945": "not set", "CONFIG_SENSORS_LTC2947_I2C": "not set", "CONFIG_SENSORS_LTC2990": "not set", "CONFIG_SENSORS_LTC2991": "not set", "CONFIG_SENSORS_LTC2992": "not set", "CONFIG_SENSORS_LTC4151": "not set", "CONFIG_SENSORS_LTC4215": "not set", "CONFIG_SENSORS_LTC4222": "not set", "CONFIG_SENSORS_LTC4245": "not set", "CONFIG_SENSORS_LTC4260": "not set", "CONFIG_SENSORS_LTC4261": "not set", "CONFIG_SENSORS_LTC4282": "not set", "CONFIG_SENSORS_MAX127": "not set", "CONFIG_SENSORS_MAX16065": "not set", "CONFIG_SENSORS_MAX1619": "not set", "CONFIG_SENSORS_MAX1668": "not set", "CONFIG_SENSORS_MAX197": "not set", "CONFIG_SENSORS_MAX31730": "not set", "CONFIG_SENSORS_MAX31760": "not set", "CONFIG_MAX31827": "not set", "CONFIG_SENSORS_MAX6620": "not set", "CONFIG_SENSORS_MAX6621": "not set", "CONFIG_SENSORS_MAX6639": "not set", "CONFIG_SENSORS_MAX6650": "not set", "CONFIG_SENSORS_MAX6697": "not set", "CONFIG_SENSORS_MAX31790": "not set", "CONFIG_SENSORS_MC34VR500": "not set", "CONFIG_SENSORS_MCP3021": "not set", "CONFIG_SENSORS_TC654": "not set", "CONFIG_SENSORS_TPS23861": "not set", "CONFIG_SENSORS_MR75203": "not set", "CONFIG_SENSORS_LM63": "not set", "CONFIG_SENSORS_LM73": "not set", "CONFIG_SENSORS_LM75": "not set", "CONFIG_SENSORS_LM77": "not set", "CONFIG_SENSORS_LM78": "not set", "CONFIG_SENSORS_LM80": "not set", "CONFIG_SENSORS_LM83": "not set", "CONFIG_SENSORS_LM85": "not set", "CONFIG_SENSORS_LM87": "not set", "CONFIG_SENSORS_LM90": "not set", "CONFIG_SENSORS_LM92": "not set", "CONFIG_SENSORS_LM93": "not set", "CONFIG_SENSORS_LM95234": "not set", "CONFIG_SENSORS_LM95241": "not set", "CONFIG_SENSORS_LM95245": "not set", "CONFIG_SENSORS_PC87360": "not set", "CONFIG_SENSORS_PC87427": "not set", "CONFIG_SENSORS_NCT6683": "not set", "CONFIG_SENSORS_NCT6775": "not set", "CONFIG_SENSORS_NCT6775_I2C": "not set", "CONFIG_SENSORS_NCT7802": "not set", "CONFIG_SENSORS_NCT7904": "not set", "CONFIG_SENSORS_NPCM7XX": "not set", "CONFIG_SENSORS_NZXT_KRAKEN2": "not set", "CONFIG_SENSORS_NZXT_KRAKEN3": "not set", "CONFIG_SENSORS_NZXT_SMART2": "not set", "CONFIG_SENSORS_OCC_P8_I2C": "not set", "CONFIG_SENSORS_OXP": "not set", "CONFIG_SENSORS_PCF8591": "not set", "CONFIG_PMBUS": "not set", "CONFIG_SENSORS_PT5161L": "not set", "CONFIG_SENSORS_SBTSI": "not set", "CONFIG_SENSORS_SBRMI": "not set", "CONFIG_SENSORS_SHT15": "not set", "CONFIG_SENSORS_SHT21": "not set", "CONFIG_SENSORS_SHT3x": "not set", "CONFIG_SENSORS_SHT4x": "not set", "CONFIG_SENSORS_SHTC1": "not set", "CONFIG_SENSORS_SIS5595": "not set", "CONFIG_SENSORS_DME1737": "not set", "CONFIG_SENSORS_EMC1403": "not set", "CONFIG_SENSORS_EMC2103": "not set", "CONFIG_SENSORS_EMC2305": "not set", "CONFIG_SENSORS_EMC6W201": "not set", "CONFIG_SENSORS_SMSC47M1": "not set", "CONFIG_SENSORS_SMSC47M192": "not set", "CONFIG_SENSORS_SMSC47B397": "not set", "CONFIG_SENSORS_SCH5627": "not set", "CONFIG_SENSORS_SCH5636": "not set", "CONFIG_SENSORS_STTS751": "not set", "CONFIG_SENSORS_ADC128D818": "not set", "CONFIG_SENSORS_ADS7828": "not set", "CONFIG_SENSORS_AMC6821": "not set", "CONFIG_SENSORS_INA209": "not set", "CONFIG_SENSORS_INA2XX": "not set", "CONFIG_SENSORS_INA238": "not set", "CONFIG_SENSORS_INA3221": "not set", "CONFIG_SENSORS_SPD5118": "not set", "CONFIG_SENSORS_TC74": "not set", "CONFIG_SENSORS_THMC50": "not set", "CONFIG_SENSORS_TMP102": "not set", "CONFIG_SENSORS_TMP103": "not set", "CONFIG_SENSORS_TMP108": "not set", "CONFIG_SENSORS_TMP401": "not set", "CONFIG_SENSORS_TMP421": "not set", "CONFIG_SENSORS_TMP464": "not set", "CONFIG_SENSORS_TMP513": "not set", "CONFIG_SENSORS_VIA_CPUTEMP": "not set", "CONFIG_SENSORS_VIA686A": "not set", "CONFIG_SENSORS_VT1211": "not set", "CONFIG_SENSORS_VT8231": "not set", "CONFIG_SENSORS_W83773G": "not set", "CONFIG_SENSORS_W83781D": "not set", "CONFIG_SENSORS_W83791D": "not set", "CONFIG_SENSORS_W83792D": "not set", "CONFIG_SENSORS_W83793": "not set", "CONFIG_SENSORS_W83795": "not set", "CONFIG_SENSORS_W83L785TS": "not set", "CONFIG_SENSORS_W83L786NG": "not set", "CONFIG_SENSORS_W83627HF": "not set", "CONFIG_SENSORS_W83627EHF": "not set", "CONFIG_SENSORS_XGENE": "not set", "CONFIG_SENSORS_ACPI_POWER": "not set", "CONFIG_SENSORS_ATK0110": "not set", "CONFIG_SENSORS_ASUS_WMI": "not set", "CONFIG_SENSORS_ASUS_EC": "not set", "CONFIG_SENSORS_HP_WMI": "not set", "CONFIG_THERMAL": "y", "CONFIG_THERMAL_NETLINK": "not set", "CONFIG_THERMAL_STATISTICS": "not set", "CONFIG_THERMAL_DEBUGFS": "not set", "CONFIG_THERMAL_CORE_TESTING": "not set", "CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS": "0", "CONFIG_THERMAL_HWMON": "y", "CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE": "y", "CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE": "not set", "CONFIG_THERMAL_GOV_FAIR_SHARE": "not set", "CONFIG_THERMAL_GOV_STEP_WISE": "y", "CONFIG_THERMAL_GOV_BANG_BANG": "not set", "CONFIG_THERMAL_GOV_USER_SPACE": "y", "CONFIG_THERMAL_EMULATION": "not set", "CONFIG_INTEL_POWERCLAMP": "not set", "CONFIG_X86_THERMAL_VECTOR": "y", "CONFIG_INTEL_TCC": "y", "CONFIG_X86_PKG_TEMP_THERMAL": "m", "CONFIG_INTEL_SOC_DTS_THERMAL": "not set", "CONFIG_INT340X_THERMAL": "not set", "CONFIG_INTEL_PCH_THERMAL": "not set", "CONFIG_INTEL_TCC_COOLING": "not set", "CONFIG_INTEL_HFI_THERMAL": "not set", "CONFIG_WATCHDOG": "y", "CONFIG_WATCHDOG_CORE": "m", "CONFIG_WATCHDOG_NOWAYOUT": "not set", "CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED": "y", "CONFIG_WATCHDOG_OPEN_TIMEOUT": "0", "CONFIG_WATCHDOG_SYSFS": "not set", "CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT": "not set", "CONFIG_WATCHDOG_PRETIMEOUT_GOV": "not set", "CONFIG_SOFT_WATCHDOG": "m", "CONFIG_LENOVO_SE10_WDT": "not set", "CONFIG_WDAT_WDT": "not set", "CONFIG_XILINX_WATCHDOG": "not set", "CONFIG_ZIIRAVE_WATCHDOG": "not set", "CONFIG_CADENCE_WATCHDOG": "not set", "CONFIG_DW_WATCHDOG": "not set", "CONFIG_MAX63XX_WATCHDOG": "not set", "CONFIG_ACQUIRE_WDT": "not set", "CONFIG_ADVANTECH_WDT": "not set", "CONFIG_ADVANTECH_EC_WDT": "not set", "CONFIG_ALIM1535_WDT": "not set", "CONFIG_ALIM7101_WDT": "not set", "CONFIG_EBC_C384_WDT": "not set", "CONFIG_EXAR_WDT": "not set", "CONFIG_F71808E_WDT": "not set", "CONFIG_SP5100_TCO": "not set", "CONFIG_SBC_FITPC2_WATCHDOG": "not set", "CONFIG_EUROTECH_WDT": "not set", "CONFIG_IB700_WDT": "not set", "CONFIG_IBMASR": "not set", "CONFIG_WAFER_WDT": "not set", "CONFIG_I6300ESB_WDT": "not set", "CONFIG_IE6XX_WDT": "not set", "CONFIG_ITCO_WDT": "not set", "CONFIG_IT8712F_WDT": "not set", "CONFIG_IT87_WDT": "not set", "CONFIG_HP_WATCHDOG": "not set", "CONFIG_SC1200_WDT": "not set", "CONFIG_PC87413_WDT": "not set", "CONFIG_NV_TCO": "not set", "CONFIG_60XX_WDT": "not set", "CONFIG_CPU5_WDT": "not set", "CONFIG_SMSC_SCH311X_WDT": "not set", "CONFIG_SMSC37B787_WDT": "not set", "CONFIG_TQMX86_WDT": "not set", "CONFIG_VIA_WDT": "not set", "CONFIG_W83627HF_WDT": "not set", "CONFIG_W83877F_WDT": "not set", "CONFIG_W83977F_WDT": "not set", "CONFIG_MACHZ_WDT": "not set", "CONFIG_SBC_EPX_C3_WATCHDOG": "not set", "CONFIG_INTEL_MEI_WDT": "not set", "CONFIG_NI903X_WDT": "not set", "CONFIG_NIC7018_WDT": "not set", "CONFIG_MEN_A21_WDT": "not set", "CONFIG_PCIPCWATCHDOG": "not set", "CONFIG_WDTPCI": "not set", "CONFIG_USBPCWATCHDOG": "not set", "CONFIG_SSB_POSSIBLE": "y", "CONFIG_SSB": "not set", "CONFIG_BCMA_POSSIBLE": "y", "CONFIG_BCMA": "m", "CONFIG_BCMA_HOST_PCI_POSSIBLE": "y", "CONFIG_BCMA_HOST_PCI": "y", "CONFIG_BCMA_HOST_SOC": "not set", "CONFIG_BCMA_DRIVER_PCI": "y", "CONFIG_BCMA_DRIVER_GMAC_CMN": "y", "CONFIG_BCMA_DRIVER_GPIO": "not set", "CONFIG_BCMA_DEBUG": "not set", "CONFIG_MFD_AS3711": "not set", "CONFIG_MFD_SMPRO": "not set", "CONFIG_PMIC_ADP5520": "not set", "CONFIG_MFD_AAT2870_CORE": "not set", "CONFIG_MFD_BCM590XX": "not set", "CONFIG_MFD_BD9571MWV": "not set", "CONFIG_MFD_AXP20X_I2C": "not set", "CONFIG_MFD_CS42L43_I2C": "not set", "CONFIG_MFD_MADERA": "not set", "CONFIG_PMIC_DA903X": "not set", "CONFIG_MFD_DA9052_I2C": "not set", "CONFIG_MFD_DA9055": "not set", "CONFIG_MFD_DA9062": "not set", "CONFIG_MFD_DA9063": "not set", "CONFIG_MFD_DA9150": "not set", "CONFIG_MFD_DLN2": "not set", "CONFIG_MFD_MC13XXX_I2C": "not set", "CONFIG_MFD_MP2629": "not set", "CONFIG_MFD_INTEL_QUARK_I2C_GPIO": "not set", "CONFIG_LPC_ICH": "not set", "CONFIG_LPC_SCH": "not set", "CONFIG_MFD_INTEL_LPSS_ACPI": "not set", "CONFIG_MFD_INTEL_LPSS_PCI": "not set", "CONFIG_MFD_INTEL_PMC_BXT": "not set", "CONFIG_MFD_IQS62X": "not set", "CONFIG_MFD_JANZ_CMODIO": "not set", "CONFIG_MFD_KEMPLD": "not set", "CONFIG_MFD_88PM800": "not set", "CONFIG_MFD_88PM805": "not set", "CONFIG_MFD_88PM860X": "not set", "CONFIG_MFD_MAX14577": "not set", "CONFIG_MFD_MAX77541": "not set", "CONFIG_MFD_MAX77693": "not set", "CONFIG_MFD_MAX77843": "not set", "CONFIG_MFD_MAX8907": "not set", "CONFIG_MFD_MAX8925": "not set", "CONFIG_MFD_MAX8997": "not set", "CONFIG_MFD_MAX8998": "not set", "CONFIG_MFD_MT6360": "not set", "CONFIG_MFD_MT6370": "not set", "CONFIG_MFD_MT6397": "not set", "CONFIG_MFD_MENF21BMC": "not set", "CONFIG_MFD_VIPERBOARD": "not set", "CONFIG_MFD_RETU": "not set", "CONFIG_MFD_PCF50633": "not set", "CONFIG_MFD_SY7636A": "not set", "CONFIG_MFD_RDC321X": "not set", "CONFIG_MFD_RT4831": "not set", "CONFIG_MFD_RT5033": "not set", "CONFIG_MFD_RT5120": "not set", "CONFIG_MFD_RC5T583": "not set", "CONFIG_MFD_SI476X_CORE": "not set", "CONFIG_MFD_SM501": "not set", "CONFIG_MFD_SKY81452": "not set", "CONFIG_MFD_SYSCON": "not set", "CONFIG_MFD_LP3943": "not set", "CONFIG_MFD_LP8788": "not set", "CONFIG_MFD_TI_LMU": "not set", "CONFIG_MFD_PALMAS": "not set", "CONFIG_TPS6105X": "not set", "CONFIG_TPS65010": "not set", "CONFIG_TPS6507X": "not set", "CONFIG_MFD_TPS65086": "not set", "CONFIG_MFD_TPS65090": "not set", "CONFIG_MFD_TI_LP873X": "not set", "CONFIG_MFD_TPS6586X": "not set", "CONFIG_MFD_TPS65910": "not set", "CONFIG_MFD_TPS65912_I2C": "not set", "CONFIG_MFD_TPS6594_I2C": "not set", "CONFIG_TWL4030_CORE": "not set", "CONFIG_TWL6040_CORE": "not set", "CONFIG_MFD_WL1273_CORE": "not set", "CONFIG_MFD_LM3533": "not set", "CONFIG_MFD_TQMX86": "not set", "CONFIG_MFD_VX855": "not set", "CONFIG_MFD_ARIZONA_I2C": "not set", "CONFIG_MFD_WM8400": "not set", "CONFIG_MFD_WM831X_I2C": "not set", "CONFIG_MFD_WM8350_I2C": "not set", "CONFIG_MFD_WM8994": "not set", "CONFIG_MFD_ATC260X_I2C": "not set", "CONFIG_MFD_CS40L50_I2C": "not set", "CONFIG_REGULATOR": "not set", "CONFIG_RC_CORE": "not set", "CONFIG_MEDIA_CEC_SUPPORT": "not set", "CONFIG_MEDIA_SUPPORT": "m", "CONFIG_MEDIA_SUPPORT_FILTER": "y", "CONFIG_MEDIA_SUBDRV_AUTOSELECT": "y", "CONFIG_MEDIA_CAMERA_SUPPORT": "y", "CONFIG_MEDIA_ANALOG_TV_SUPPORT": "not set", "CONFIG_MEDIA_DIGITAL_TV_SUPPORT": "not set", "CONFIG_MEDIA_RADIO_SUPPORT": "not set", "CONFIG_MEDIA_SDR_SUPPORT": "not set", "CONFIG_MEDIA_PLATFORM_SUPPORT": "not set", "CONFIG_MEDIA_TEST_SUPPORT": "not set", "CONFIG_VIDEO_DEV": "m", "CONFIG_MEDIA_CONTROLLER": "y", "CONFIG_VIDEO_V4L2_I2C": "y", "CONFIG_VIDEO_V4L2_SUBDEV_API": "y", "CONFIG_VIDEO_ADV_DEBUG": "not set", "CONFIG_VIDEO_FIXED_MINOR_RANGES": "not set", "CONFIG_V4L2_FWNODE": "m", "CONFIG_V4L2_ASYNC": "m", "CONFIG_MEDIA_USB_SUPPORT": "y", "CONFIG_USB_GSPCA": "m", "CONFIG_USB_GSPCA_BENQ": "m", "CONFIG_USB_GSPCA_CONEX": "m", "CONFIG_USB_GSPCA_CPIA1": "m", "CONFIG_USB_GSPCA_DTCS033": "not set", "CONFIG_USB_GSPCA_ETOMS": "m", "CONFIG_USB_GSPCA_FINEPIX": "m", "CONFIG_USB_GSPCA_JEILINJ": "m", "CONFIG_USB_GSPCA_JL2005BCD": "m", "CONFIG_USB_GSPCA_KINECT": "m", "CONFIG_USB_GSPCA_KONICA": "m", "CONFIG_USB_GSPCA_MARS": "m", "CONFIG_USB_GSPCA_MR97310A": "m", "CONFIG_USB_GSPCA_NW80X": "m", "CONFIG_USB_GSPCA_OV519": "m", "CONFIG_USB_GSPCA_OV534": "m", "CONFIG_USB_GSPCA_OV534_9": "m", "CONFIG_USB_GSPCA_PAC207": "m", "CONFIG_USB_GSPCA_PAC7302": "m", "CONFIG_USB_GSPCA_PAC7311": "m", "CONFIG_USB_GSPCA_SE401": "m", "CONFIG_USB_GSPCA_SN9C2028": "m", "CONFIG_USB_GSPCA_SN9C20X": "m", "CONFIG_USB_GSPCA_SONIXB": "m", "CONFIG_USB_GSPCA_SONIXJ": "m", "CONFIG_USB_GSPCA_SPCA1528": "m", "CONFIG_USB_GSPCA_SPCA500": "m", "CONFIG_USB_GSPCA_SPCA501": "m", "CONFIG_USB_GSPCA_SPCA505": "m", "CONFIG_USB_GSPCA_SPCA506": "m", "CONFIG_USB_GSPCA_SPCA508": "m", "CONFIG_USB_GSPCA_SPCA561": "m", "CONFIG_USB_GSPCA_SQ905": "m", "CONFIG_USB_GSPCA_SQ905C": "m", "CONFIG_USB_GSPCA_SQ930X": "m", "CONFIG_USB_GSPCA_STK014": "m", "CONFIG_USB_GSPCA_STK1135": "not set", "CONFIG_USB_GSPCA_STV0680": "m", "CONFIG_USB_GSPCA_SUNPLUS": "m", "CONFIG_USB_GSPCA_T613": "m", "CONFIG_USB_GSPCA_TOPRO": "m", "CONFIG_USB_GSPCA_TOUPTEK": "not set", "CONFIG_USB_GSPCA_TV8532": "m", "CONFIG_USB_GSPCA_VC032X": "m", "CONFIG_USB_GSPCA_VICAM": "m", "CONFIG_USB_GSPCA_XIRLINK_CIT": "m", "CONFIG_USB_GSPCA_ZC3XX": "m", "CONFIG_USB_GL860": "m", "CONFIG_USB_M5602": "m", "CONFIG_USB_STV06XX": "m", "CONFIG_USB_PWC": "m", "CONFIG_USB_PWC_DEBUG": "not set", "CONFIG_USB_PWC_INPUT_EVDEV": "y", "CONFIG_USB_S2255": "m", "CONFIG_VIDEO_USBTV": "not set", "CONFIG_USB_VIDEO_CLASS": "m", "CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV": "y", "CONFIG_VIDEO_EM28XX": "not set", "CONFIG_MEDIA_PCI_SUPPORT": "not set", "CONFIG_UVC_COMMON": "m", "CONFIG_VIDEOBUF2_CORE": "m", "CONFIG_VIDEOBUF2_V4L2": "m", "CONFIG_VIDEOBUF2_MEMOPS": "m", "CONFIG_VIDEOBUF2_VMALLOC": "m", "CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV": "y", "CONFIG_VIDEO_CAMERA_SENSOR": "y", "CONFIG_VIDEO_ALVIUM_CSI2": "not set", "CONFIG_VIDEO_AR0521": "not set", "CONFIG_VIDEO_GC0308": "not set", "CONFIG_VIDEO_GC05A2": "not set", "CONFIG_VIDEO_GC08A3": "not set", "CONFIG_VIDEO_GC2145": "not set", "CONFIG_VIDEO_HI556": "not set", "CONFIG_VIDEO_HI846": "not set", "CONFIG_VIDEO_HI847": "not set", "CONFIG_VIDEO_IMX208": "not set", "CONFIG_VIDEO_IMX214": "not set", "CONFIG_VIDEO_IMX219": "not set", "CONFIG_VIDEO_IMX258": "not set", "CONFIG_VIDEO_IMX274": "not set", "CONFIG_VIDEO_IMX283": "not set", "CONFIG_VIDEO_IMX290": "not set", "CONFIG_VIDEO_IMX296": "not set", "CONFIG_VIDEO_IMX319": "not set", "CONFIG_VIDEO_IMX355": "not set", "CONFIG_VIDEO_MT9M001": "not set", "CONFIG_VIDEO_MT9M111": "not set", "CONFIG_VIDEO_MT9M114": "not set", "CONFIG_VIDEO_MT9P031": "not set", "CONFIG_VIDEO_MT9T112": "not set", "CONFIG_VIDEO_MT9V011": "not set", "CONFIG_VIDEO_MT9V032": "not set", "CONFIG_VIDEO_MT9V111": "not set", "CONFIG_VIDEO_OG01A1B": "not set", "CONFIG_VIDEO_OV01A10": "not set", "CONFIG_VIDEO_OV02A10": "not set", "CONFIG_VIDEO_OV08D10": "not set", "CONFIG_VIDEO_OV08X40": "not set", "CONFIG_VIDEO_OV13858": "not set", "CONFIG_VIDEO_OV13B10": "not set", "CONFIG_VIDEO_OV2640": "not set", "CONFIG_VIDEO_OV2659": "not set", "CONFIG_VIDEO_OV2680": "not set", "CONFIG_VIDEO_OV2685": "not set", "CONFIG_VIDEO_OV2740": "not set", "CONFIG_VIDEO_OV4689": "not set", "CONFIG_VIDEO_OV5647": "not set", "CONFIG_VIDEO_OV5648": "not set", "CONFIG_VIDEO_OV5670": "not set", "CONFIG_VIDEO_OV5675": "not set", "CONFIG_VIDEO_OV5693": "not set", "CONFIG_VIDEO_OV5695": "not set", "CONFIG_VIDEO_OV64A40": "not set", "CONFIG_VIDEO_OV6650": "not set", "CONFIG_VIDEO_OV7251": "not set", "CONFIG_VIDEO_OV7640": "not set", "CONFIG_VIDEO_OV7670": "not set", "CONFIG_VIDEO_OV772X": "not set", "CONFIG_VIDEO_OV7740": "not set", "CONFIG_VIDEO_OV8856": "not set", "CONFIG_VIDEO_OV8858": "not set", "CONFIG_VIDEO_OV8865": "not set", "CONFIG_VIDEO_OV9640": "not set", "CONFIG_VIDEO_OV9650": "not set", "CONFIG_VIDEO_OV9734": "not set", "CONFIG_VIDEO_RDACM20": "not set", "CONFIG_VIDEO_RDACM21": "not set", "CONFIG_VIDEO_RJ54N1": "not set", "CONFIG_VIDEO_S5K5BAF": "not set", "CONFIG_VIDEO_S5K6A3": "not set", "CONFIG_VIDEO_CCS": "not set", "CONFIG_VIDEO_ET8EK8": "not set", "CONFIG_VIDEO_THP7312": "not set", "CONFIG_VIDEO_AD5820": "not set", "CONFIG_VIDEO_AK7375": "not set", "CONFIG_VIDEO_DW9714": "not set", "CONFIG_VIDEO_DW9719": "not set", "CONFIG_VIDEO_DW9768": "not set", "CONFIG_VIDEO_DW9807_VCM": "not set", "CONFIG_VIDEO_ADP1653": "not set", "CONFIG_VIDEO_LM3560": "not set", "CONFIG_VIDEO_LM3646": "not set", "CONFIG_APERTURE_HELPERS": "y", "CONFIG_SCREEN_INFO": "y", "CONFIG_VIDEO": "y", "CONFIG_AUXDISPLAY": "not set", "CONFIG_PANEL": "not set", "CONFIG_AGP": "y", "CONFIG_AGP_AMD64": "not set", "CONFIG_AGP_INTEL": "y", "CONFIG_AGP_SIS": "not set", "CONFIG_AGP_VIA": "not set", "CONFIG_INTEL_GTT": "y", "CONFIG_VGA_SWITCHEROO": "not set", "CONFIG_DRM": "y", "CONFIG_DRM_MIPI_DSI": "y", "CONFIG_DRM_DEBUG_MM": "not set", "CONFIG_DRM_KMS_HELPER": "y", "CONFIG_DRM_PANIC": "not set", "CONFIG_DRM_FBDEV_EMULATION": "y", "CONFIG_DRM_FBDEV_OVERALLOC": "100", "CONFIG_DRM_LOAD_EDID_FIRMWARE": "not set", "CONFIG_DRM_DISPLAY_HELPER": "m", "CONFIG_DRM_DISPLAY_DP_AUX_CEC": "not set", "CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV": "not set", "CONFIG_DRM_DISPLAY_DP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDCP_HELPER": "y", "CONFIG_DRM_DISPLAY_HDMI_HELPER": "y", "CONFIG_DRM_TTM": "y", "CONFIG_DRM_BUDDY": "m", "CONFIG_DRM_VRAM_HELPER": "y", "CONFIG_DRM_TTM_HELPER": "y", "CONFIG_DRM_GEM_SHMEM_HELPER": "y", "CONFIG_DRM_I2C_CH7006": "not set", "CONFIG_DRM_I2C_SIL164": "not set", "CONFIG_DRM_I2C_NXP_TDA998X": "not set", "CONFIG_DRM_I2C_NXP_TDA9950": "not set", "CONFIG_DRM_RADEON": "not set", "CONFIG_DRM_AMDGPU": "not set", "CONFIG_DRM_NOUVEAU": "not set", "CONFIG_DRM_I915": "m", "CONFIG_DRM_I915_FORCE_PROBE": "\\"\\"", "CONFIG_DRM_I915_CAPTURE_ERROR": "y", "CONFIG_DRM_I915_COMPRESS_ERROR": "y", "CONFIG_DRM_I915_USERPTR": "y", "CONFIG_DRM_I915_REQUEST_TIMEOUT": "20000", "CONFIG_DRM_I915_FENCE_TIMEOUT": "10000", "CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND": "250", "CONFIG_DRM_I915_HEARTBEAT_INTERVAL": "2500", "CONFIG_DRM_I915_PREEMPT_TIMEOUT": "640", "CONFIG_DRM_I915_PREEMPT_TIMEOUT_COMPUTE": "7500", "CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT": "8000", "CONFIG_DRM_I915_STOP_TIMEOUT": "100", "CONFIG_DRM_I915_TIMESLICE_DURATION": "1", "CONFIG_DRM_XE": "not set", "CONFIG_DRM_VGEM": "not set", "CONFIG_DRM_VKMS": "not set", "CONFIG_DRM_VMWGFX": "not set", "CONFIG_DRM_GMA500": "not set", "CONFIG_DRM_UDL": "not set", "CONFIG_DRM_AST": "not set", "CONFIG_DRM_MGAG200": "not set", "CONFIG_DRM_QXL": "not set", "CONFIG_DRM_VIRTIO_GPU": "y", "CONFIG_DRM_VIRTIO_GPU_KMS": "y", "CONFIG_DRM_PANEL": "y", "CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN": "not set", "CONFIG_DRM_BRIDGE": "y", "CONFIG_DRM_PANEL_BRIDGE": "y", "CONFIG_DRM_ANALOGIX_ANX78XX": "not set", "CONFIG_DRM_ETNAVIV": "not set", "CONFIG_DRM_BOCHS": "y", "CONFIG_DRM_CIRRUS_QEMU": "m", "CONFIG_DRM_GM12U320": "not set", "CONFIG_DRM_SIMPLEDRM": "not set", "CONFIG_DRM_VBOXVIDEO": "not set", "CONFIG_DRM_GUD": "not set", "CONFIG_DRM_SSD130X": "not set", "CONFIG_DRM_PANEL_ORIENTATION_QUIRKS": "y", "CONFIG_FB": "y", "CONFIG_FB_CIRRUS": "not set", "CONFIG_FB_PM2": "not set", "CONFIG_FB_CYBER2000": "not set", "CONFIG_FB_ARC": "not set", "CONFIG_FB_ASILIANT": "not set", "CONFIG_FB_IMSTT": "not set", "CONFIG_FB_VGA16": "not set", "CONFIG_FB_UVESA": "m", "CONFIG_FB_VESA": "not set", "CONFIG_FB_EFI": "y", "CONFIG_FB_N411": "not set", "CONFIG_FB_HGA": "not set", "CONFIG_FB_OPENCORES": "not set", "CONFIG_FB_S1D13XXX": "not set", "CONFIG_FB_NVIDIA": "not set", "CONFIG_FB_RIVA": "not set", "CONFIG_FB_I740": "not set", "CONFIG_FB_MATROX": "not set", "CONFIG_FB_RADEON": "not set", "CONFIG_FB_ATY128": "not set", "CONFIG_FB_ATY": "not set", "CONFIG_FB_S3": "not set", "CONFIG_FB_SAVAGE": "not set", "CONFIG_FB_SIS": "not set", "CONFIG_FB_VIA": "not set", "CONFIG_FB_NEOMAGIC": "not set", "CONFIG_FB_KYRO": "not set", "CONFIG_FB_3DFX": "not set", "CONFIG_FB_VOODOO1": "not set", "CONFIG_FB_VT8623": "not set", "CONFIG_FB_TRIDENT": "not set", "CONFIG_FB_ARK": "not set", "CONFIG_FB_PM3": "not set", "CONFIG_FB_CARMINE": "not set", "CONFIG_FB_SMSCUFX": "not set", "CONFIG_FB_UDL": "not set", "CONFIG_FB_IBM_GXT4500": "not set", "CONFIG_FB_VIRTUAL": "not set", "CONFIG_FB_METRONOME": "not set", "CONFIG_FB_MB862XX": "not set", "CONFIG_FB_SIMPLE": "y", "CONFIG_FB_SSD1307": "not set", "CONFIG_FB_SM712": "not set", "CONFIG_FB_CORE": "y", "CONFIG_FB_NOTIFY": "y", "CONFIG_FIRMWARE_EDID": "not set", "CONFIG_FB_DEVICE": "y", "CONFIG_FB_CFB_FILLRECT": "y", "CONFIG_FB_CFB_COPYAREA": "y", "CONFIG_FB_CFB_IMAGEBLIT": "y", "CONFIG_FB_SYS_FILLRECT": "y", "CONFIG_FB_SYS_COPYAREA": "y", "CONFIG_FB_SYS_IMAGEBLIT": "y", "CONFIG_FB_FOREIGN_ENDIAN": "not set", "CONFIG_FB_SYSMEM_FOPS": "y", "CONFIG_FB_DEFERRED_IO": "y", "CONFIG_FB_IOMEM_FOPS": "y", "CONFIG_FB_IOMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS": "y", "CONFIG_FB_SYSMEM_HELPERS_DEFERRED": "y", "CONFIG_FB_MODE_HELPERS": "y", "CONFIG_FB_TILEBLITTING": "not set", "CONFIG_LCD_CLASS_DEVICE": "not set", "CONFIG_BACKLIGHT_CLASS_DEVICE": "m", "CONFIG_BACKLIGHT_KTD253": "not set", "CONFIG_BACKLIGHT_KTD2801": "not set", "CONFIG_BACKLIGHT_KTZ8866": "not set", "CONFIG_BACKLIGHT_APPLE": "not set", "CONFIG_BACKLIGHT_QCOM_WLED": "not set", "CONFIG_BACKLIGHT_SAHARA": "not set", "CONFIG_BACKLIGHT_ADP8860": "not set", "CONFIG_BACKLIGHT_ADP8870": "not set", "CONFIG_BACKLIGHT_LM3509": "not set", "CONFIG_BACKLIGHT_LM3639": "not set", "CONFIG_BACKLIGHT_GPIO": "not set", "CONFIG_BACKLIGHT_LV5207LP": "not set", "CONFIG_BACKLIGHT_BD6107": "not set", "CONFIG_BACKLIGHT_ARCXCNN": "not set", "CONFIG_HDMI": "y", "CONFIG_VGA_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE": "y", "CONFIG_DUMMY_CONSOLE_COLUMNS": "80", "CONFIG_DUMMY_CONSOLE_ROWS": "25", "CONFIG_FRAMEBUFFER_CONSOLE": "y", "CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY": "y", "CONFIG_FRAMEBUFFER_CONSOLE_ROTATION": "not set", "CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER": "not set", "CONFIG_LOGO": "not set", "CONFIG_DRM_ACCEL": "not set", "CONFIG_SOUND": "m", "CONFIG_SND": "m", "CONFIG_SND_TIMER": "m", "CONFIG_SND_PCM": "m", "CONFIG_SND_HWDEP": "m", "CONFIG_SND_SEQ_DEVICE": "m", "CONFIG_SND_RAWMIDI": "m", "CONFIG_SND_JACK": "y", "CONFIG_SND_JACK_INPUT_DEV": "y", "CONFIG_SND_OSSEMUL": "not set", "CONFIG_SND_PCM_TIMER": "y", "CONFIG_SND_HRTIMER": "m", "CONFIG_SND_DYNAMIC_MINORS": "y", "CONFIG_SND_MAX_CARDS": "32", "CONFIG_SND_SUPPORT_OLD_API": "not set", "CONFIG_SND_PROC_FS": "y", "CONFIG_SND_VERBOSE_PROCFS": "y", "CONFIG_SND_CTL_FAST_LOOKUP": "y", "CONFIG_SND_DEBUG": "not set", "CONFIG_SND_CTL_INPUT_VALIDATION": "not set", "CONFIG_SND_UTIMER": "not set", "CONFIG_SND_VMASTER": "y", "CONFIG_SND_DMA_SGBUF": "y", "CONFIG_SND_CTL_LED": "m", "CONFIG_SND_SEQUENCER": "m", "CONFIG_SND_SEQ_DUMMY": "not set", "CONFIG_SND_SEQ_HRTIMER_DEFAULT": "y", "CONFIG_SND_SEQ_MIDI_EVENT": "m", "CONFIG_SND_SEQ_MIDI": "m", "CONFIG_SND_SEQ_MIDI_EMUL": "m", "CONFIG_SND_SEQ_VIRMIDI": "m", "CONFIG_SND_SEQ_UMP": "not set", "CONFIG_SND_MPU401_UART": "m", "CONFIG_SND_OPL3_LIB": "m", "CONFIG_SND_OPL3_LIB_SEQ": "m", "CONFIG_SND_AC97_CODEC": "m", "CONFIG_SND_DRIVERS": "y", "CONFIG_SND_PCSP": "not set", "CONFIG_SND_DUMMY": "not set", "CONFIG_SND_ALOOP": "m", "CONFIG_SND_PCMTEST": "not set", "CONFIG_SND_VIRMIDI": "not set", "CONFIG_SND_MTPAV": "not set", "CONFIG_SND_MTS64": "not set", "CONFIG_SND_SERIAL_U16550": "not set", "CONFIG_SND_MPU401": "not set", "CONFIG_SND_PORTMAN2X4": "not set", "CONFIG_SND_AC97_POWER_SAVE": "y", "CONFIG_SND_AC97_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_PCI": "y", "CONFIG_SND_AD1889": "not set", "CONFIG_SND_ALS300": "not set", "CONFIG_SND_ALS4000": "not set", "CONFIG_SND_ALI5451": "not set", "CONFIG_SND_ASIHPI": "not set", "CONFIG_SND_ATIIXP": "m", "CONFIG_SND_ATIIXP_MODEM": "m", "CONFIG_SND_AU8810": "not set", "CONFIG_SND_AU8820": "not set", "CONFIG_SND_AU8830": "not set", "CONFIG_SND_AW2": "not set", "CONFIG_SND_AZT3328": "not set", "CONFIG_SND_BT87X": "not set", "CONFIG_SND_CA0106": "m", "CONFIG_SND_CMIPCI": "m", "CONFIG_SND_OXYGEN_LIB": "m", "CONFIG_SND_OXYGEN": "m", "CONFIG_SND_CS4281": "not set", "CONFIG_SND_CS46XX": "not set", "CONFIG_SND_CTXFI": "m", "CONFIG_SND_DARLA20": "not set", "CONFIG_SND_GINA20": "not set", "CONFIG_SND_LAYLA20": "not set", "CONFIG_SND_DARLA24": "not set", "CONFIG_SND_GINA24": "not set", "CONFIG_SND_LAYLA24": "not set", "CONFIG_SND_MONA": "not set", "CONFIG_SND_MIA": "not set", "CONFIG_SND_ECHO3G": "not set", "CONFIG_SND_INDIGO": "not set", "CONFIG_SND_INDIGOIO": "not set", "CONFIG_SND_INDIGODJ": "not set", "CONFIG_SND_INDIGOIOX": "not set", "CONFIG_SND_INDIGODJX": "not set", "CONFIG_SND_EMU10K1": "m", "CONFIG_SND_EMU10K1_SEQ": "m", "CONFIG_SND_EMU10K1X": "m", "CONFIG_SND_ENS1370": "m", "CONFIG_SND_ENS1371": "not set", "CONFIG_SND_ES1938": "not set", "CONFIG_SND_ES1968": "not set", "CONFIG_SND_FM801": "not set", "CONFIG_SND_HDSP": "m", "CONFIG_SND_HDSPM": "m", "CONFIG_SND_ICE1712": "m", "CONFIG_SND_ICE1724": "m", "CONFIG_SND_INTEL8X0": "m", "CONFIG_SND_INTEL8X0M": "not set", "CONFIG_SND_KORG1212": "not set", "CONFIG_SND_LOLA": "not set", "CONFIG_SND_LX6464ES": "not set", "CONFIG_SND_MAESTRO3": "not set", "CONFIG_SND_MIXART": "not set", "CONFIG_SND_NM256": "not set", "CONFIG_SND_PCXHR": "not set", "CONFIG_SND_RIPTIDE": "not set", "CONFIG_SND_RME32": "not set", "CONFIG_SND_RME96": "m", "CONFIG_SND_RME9652": "m", "CONFIG_SND_SONICVIBES": "not set", "CONFIG_SND_TRIDENT": "not set", "CONFIG_SND_VIA82XX": "not set", "CONFIG_SND_VIA82XX_MODEM": "not set", "CONFIG_SND_VIRTUOSO": "m", "CONFIG_SND_VX222": "not set", "CONFIG_SND_YMFPCI": "not set", "CONFIG_SND_HDA": "m", "CONFIG_SND_HDA_GENERIC_LEDS": "y", "CONFIG_SND_HDA_INTEL": "m", "CONFIG_SND_HDA_HWDEP": "not set", "CONFIG_SND_HDA_RECONFIG": "not set", "CONFIG_SND_HDA_INPUT_BEEP": "not set", "CONFIG_SND_HDA_PATCH_LOADER": "not set", "CONFIG_SND_HDA_SCODEC_COMPONENT": "m", "CONFIG_SND_HDA_CODEC_REALTEK": "m", "CONFIG_SND_HDA_CODEC_ANALOG": "m", "CONFIG_SND_HDA_CODEC_SIGMATEL": "m", "CONFIG_SND_HDA_CODEC_VIA": "m", "CONFIG_SND_HDA_CODEC_HDMI": "m", "CONFIG_SND_HDA_CODEC_CIRRUS": "m", "CONFIG_SND_HDA_CODEC_CS8409": "not set", "CONFIG_SND_HDA_CODEC_CONEXANT": "m", "CONFIG_SND_HDA_CODEC_SENARYTECH": "not set", "CONFIG_SND_HDA_CODEC_CA0110": "m", "CONFIG_SND_HDA_CODEC_CA0132": "m", "CONFIG_SND_HDA_CODEC_CA0132_DSP": "y", "CONFIG_SND_HDA_CODEC_CMEDIA": "m", "CONFIG_SND_HDA_CODEC_SI3054": "m", "CONFIG_SND_HDA_GENERIC": "m", "CONFIG_SND_HDA_POWER_SAVE_DEFAULT": "0", "CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM": "not set", "CONFIG_SND_HDA_CTL_DEV_ID": "not set", "CONFIG_SND_HDA_CORE": "m", "CONFIG_SND_HDA_DSP_LOADER": "y", "CONFIG_SND_HDA_COMPONENT": "y", "CONFIG_SND_HDA_I915": "y", "CONFIG_SND_HDA_PREALLOC_SIZE": "0", "CONFIG_SND_INTEL_NHLT": "y", "CONFIG_SND_INTEL_DSP_CONFIG": "m", "CONFIG_SND_INTEL_SOUNDWIRE_ACPI": "m", "CONFIG_SND_USB": "y", "CONFIG_SND_USB_AUDIO": "m", "CONFIG_SND_USB_AUDIO_MIDI_V2": "not set", "CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER": "y", "CONFIG_SND_USB_UA101": "not set", "CONFIG_SND_USB_USX2Y": "m", "CONFIG_SND_USB_CAIAQ": "not set", "CONFIG_SND_USB_US122L": "m", "CONFIG_SND_USB_6FIRE": "not set", "CONFIG_SND_USB_HIFACE": "m", "CONFIG_SND_BCD2000": "not set", "CONFIG_SND_USB_POD": "not set", "CONFIG_SND_USB_PODHD": "not set", "CONFIG_SND_USB_TONEPORT": "not set", "CONFIG_SND_USB_VARIAX": "not set", "CONFIG_SND_SOC": "not set", "CONFIG_SND_X86": "y", "CONFIG_HDMI_LPE_AUDIO": "not set", "CONFIG_SND_SYNTH_EMUX": "m", "CONFIG_SND_VIRTIO": "not set", "CONFIG_AC97_BUS": "m", "CONFIG_HID_SUPPORT": "y", "CONFIG_HID": "y", "CONFIG_HID_BATTERY_STRENGTH": "not set", "CONFIG_HIDRAW": "not set", "CONFIG_UHID": "not set", "CONFIG_HID_GENERIC": "y", "CONFIG_HID_A4TECH": "y", "CONFIG_HID_ACCUTOUCH": "not set", "CONFIG_HID_ACRUX": "not set", "CONFIG_HID_APPLE": "y", "CONFIG_HID_APPLEIR": "not set", "CONFIG_HID_ASUS": "not set", "CONFIG_HID_AUREAL": "not set", "CONFIG_HID_BELKIN": "y", "CONFIG_HID_BETOP_FF": "not set", "CONFIG_HID_BIGBEN_FF": "not set", "CONFIG_HID_CHERRY": "y", "CONFIG_HID_CHICONY": "y", "CONFIG_HID_CORSAIR": "not set", "CONFIG_HID_COUGAR": "not set", "CONFIG_HID_MACALLY": "not set", "CONFIG_HID_PRODIKEYS": "not set", "CONFIG_HID_CMEDIA": "not set", "CONFIG_HID_CREATIVE_SB0540": "not set", "CONFIG_HID_CYPRESS": "y", "CONFIG_HID_DRAGONRISE": "not set", "CONFIG_HID_EMS_FF": "not set", "CONFIG_HID_ELAN": "not set", "CONFIG_HID_ELECOM": "not set", "CONFIG_HID_ELO": "not set", "CONFIG_HID_EVISION": "not set", "CONFIG_HID_EZKEY": "y", "CONFIG_HID_GEMBIRD": "not set", "CONFIG_HID_GFRM": "not set", "CONFIG_HID_GLORIOUS": "not set", "CONFIG_HID_HOLTEK": "not set", "CONFIG_HID_GOOGLE_STADIA_FF": "not set", "CONFIG_HID_VIVALDI": "not set", "CONFIG_HID_GT683R": "not set", "CONFIG_HID_KEYTOUCH": "not set", "CONFIG_HID_KYE": "not set", "CONFIG_HID_UCLOGIC": "not set", "CONFIG_HID_WALTOP": "not set", "CONFIG_HID_VIEWSONIC": "not set", "CONFIG_HID_VRC2": "not set", "CONFIG_HID_XIAOMI": "not set", "CONFIG_HID_GYRATION": "not set", "CONFIG_HID_ICADE": "not set", "CONFIG_HID_ITE": "y", "CONFIG_HID_JABRA": "not set", "CONFIG_HID_TWINHAN": "not set", "CONFIG_HID_KENSINGTON": "y", "CONFIG_HID_LCPOWER": "not set", "CONFIG_HID_LED": "not set", "CONFIG_HID_LENOVO": "not set", "CONFIG_HID_LETSKETCH": "not set", "CONFIG_HID_LOGITECH": "y", "CONFIG_HID_LOGITECH_HIDPP": "not set", "CONFIG_LOGITECH_FF": "not set", "CONFIG_LOGIRUMBLEPAD2_FF": "not set", "CONFIG_LOGIG940_FF": "not set", "CONFIG_LOGIWHEELS_FF": "not set", "CONFIG_HID_MAGICMOUSE": "not set", "CONFIG_HID_MALTRON": "not set", "CONFIG_HID_MAYFLASH": "not set", "CONFIG_HID_MEGAWORLD_FF": "not set", "CONFIG_HID_REDRAGON": "y", "CONFIG_HID_MICROSOFT": "y", "CONFIG_HID_MONTEREY": "y", "CONFIG_HID_MULTITOUCH": "not set", "CONFIG_HID_NINTENDO": "not set", "CONFIG_HID_NTI": "not set", "CONFIG_HID_NTRIG": "not set", "CONFIG_HID_NVIDIA_SHIELD": "not set", "CONFIG_HID_ORTEK": "not set", "CONFIG_HID_PANTHERLORD": "not set", "CONFIG_HID_PENMOUNT": "not set", "CONFIG_HID_PETALYNX": "not set", "CONFIG_HID_PICOLCD": "not set", "CONFIG_HID_PLANTRONICS": "not set", "CONFIG_HID_PXRC": "not set", "CONFIG_HID_RAZER": "not set", "CONFIG_HID_PRIMAX": "not set", "CONFIG_HID_RETRODE": "not set", "CONFIG_HID_ROCCAT": "not set", "CONFIG_HID_SAITEK": "not set", "CONFIG_HID_SAMSUNG": "not set", "CONFIG_HID_SEMITEK": "not set", "CONFIG_HID_SIGMAMICRO": "not set", "CONFIG_HID_SONY": "not set", "CONFIG_HID_SPEEDLINK": "not set", "CONFIG_HID_STEAM": "not set", "CONFIG_HID_STEELSERIES": "not set", "CONFIG_HID_SUNPLUS": "not set", "CONFIG_HID_RMI": "not set", "CONFIG_HID_GREENASIA": "not set", "CONFIG_HID_SMARTJOYPLUS": "not set", "CONFIG_HID_TIVO": "not set", "CONFIG_HID_TOPSEED": "not set", "CONFIG_HID_TOPRE": "not set", "CONFIG_HID_THINGM": "not set", "CONFIG_HID_THRUSTMASTER": "not set", "CONFIG_HID_UDRAW_PS3": "not set", "CONFIG_HID_U2FZERO": "not set", "CONFIG_HID_WACOM": "y", "CONFIG_HID_WIIMOTE": "not set", "CONFIG_HID_WINWING": "not set", "CONFIG_HID_XINMO": "not set", "CONFIG_HID_ZEROPLUS": "not set", "CONFIG_HID_ZYDACRON": "not set", "CONFIG_HID_SENSOR_HUB": "not set", "CONFIG_HID_ALPS": "not set", "CONFIG_HID_MCP2200": "not set", "CONFIG_HID_MCP2221": "not set", "CONFIG_HID_BPF": "not set", "CONFIG_USB_HID": "y", "CONFIG_HID_PID": "not set", "CONFIG_USB_HIDDEV": "y", "CONFIG_I2C_HID": "y", "CONFIG_I2C_HID_ACPI": "not set", "CONFIG_I2C_HID_OF": "not set", "CONFIG_INTEL_ISH_HID": "not set", "CONFIG_AMD_SFH_HID": "not set", "CONFIG_USB_OHCI_LITTLE_ENDIAN": "y", "CONFIG_USB_SUPPORT": "y", "CONFIG_USB_COMMON": "y", "CONFIG_USB_LED_TRIG": "not set", "CONFIG_USB_ULPI_BUS": "not set", "CONFIG_USB_CONN_GPIO": "not set", "CONFIG_USB_ARCH_HAS_HCD": "y", "CONFIG_USB": "y", "CONFIG_USB_PCI": "y", "CONFIG_USB_PCI_AMD": "y", "CONFIG_USB_ANNOUNCE_NEW_DEVICES": "not set", "CONFIG_USB_DEFAULT_PERSIST": "y", "CONFIG_USB_FEW_INIT_RETRIES": "not set", "CONFIG_USB_DYNAMIC_MINORS": "not set", "CONFIG_USB_OTG": "not set", "CONFIG_USB_OTG_PRODUCTLIST": "not set", "CONFIG_USB_LEDS_TRIGGER_USBPORT": "not set", "CONFIG_USB_AUTOSUSPEND_DELAY": "2", "CONFIG_USB_DEFAULT_AUTHORIZATION_MODE": "1", "CONFIG_USB_MON": "not set", "CONFIG_USB_C67X00_HCD": "not set", "CONFIG_USB_XHCI_HCD": "y", "CONFIG_USB_XHCI_DBGCAP": "not set", "CONFIG_USB_XHCI_PCI": "y", "CONFIG_USB_XHCI_PCI_RENESAS": "not set", "CONFIG_USB_XHCI_PLATFORM": "not set", "CONFIG_USB_EHCI_HCD": "y", "CONFIG_USB_EHCI_ROOT_HUB_TT": "y", "CONFIG_USB_EHCI_TT_NEWSCHED": "y", "CONFIG_USB_EHCI_PCI": "y", "CONFIG_USB_EHCI_FSL": "not set", "CONFIG_USB_EHCI_HCD_PLATFORM": "not set", "CONFIG_USB_OXU210HP_HCD": "not set", "CONFIG_USB_ISP116X_HCD": "not set", "CONFIG_USB_OHCI_HCD": "y", "CONFIG_USB_OHCI_HCD_PCI": "y", "CONFIG_USB_OHCI_HCD_PLATFORM": "not set", "CONFIG_USB_UHCI_HCD": "y", "CONFIG_USB_SL811_HCD": "not set", "CONFIG_USB_R8A66597_HCD": "not set", "CONFIG_USB_HCD_BCMA": "not set", "CONFIG_USB_HCD_TEST_MODE": "not set", "CONFIG_USB_ACM": "not set", "CONFIG_USB_PRINTER": "not set", "CONFIG_USB_WDM": "not set", "CONFIG_USB_TMC": "not set", "CONFIG_USB_STORAGE": "y", "CONFIG_USB_STORAGE_DEBUG": "not set", "CONFIG_USB_STORAGE_REALTEK": "not set", "CONFIG_USB_STORAGE_DATAFAB": "not set", "CONFIG_USB_STORAGE_FREECOM": "not set", "CONFIG_USB_STORAGE_ISD200": "not set", "CONFIG_USB_STORAGE_USBAT": "not set", "CONFIG_USB_STORAGE_SDDR09": "not set", "CONFIG_USB_STORAGE_SDDR55": "not set", "CONFIG_USB_STORAGE_JUMPSHOT": "not set", "CONFIG_USB_STORAGE_ALAUDA": "not set", "CONFIG_USB_STORAGE_ONETOUCH": "not set", "CONFIG_USB_STORAGE_KARMA": "not set", "CONFIG_USB_STORAGE_CYPRESS_ATACB": "not set", "CONFIG_USB_STORAGE_ENE_UB6250": "not set", "CONFIG_USB_UAS": "not set", "CONFIG_USB_MDC800": "not set", "CONFIG_USB_MICROTEK": "not set", "CONFIG_USBIP_CORE": "not set", "CONFIG_USB_CDNS_SUPPORT": "not set", "CONFIG_USB_MUSB_HDRC": "not set", "CONFIG_USB_DWC3": "not set", "CONFIG_USB_DWC2": "not set", "CONFIG_USB_CHIPIDEA": "not set", "CONFIG_USB_ISP1760": "not set", "CONFIG_USB_SERIAL": "y", "CONFIG_USB_SERIAL_CONSOLE": "y", "CONFIG_USB_SERIAL_GENERIC": "y", "CONFIG_USB_SERIAL_SIMPLE": "not set", "CONFIG_USB_SERIAL_AIRCABLE": "not set", "CONFIG_USB_SERIAL_ARK3116": "not set", "CONFIG_USB_SERIAL_BELKIN": "not set", "CONFIG_USB_SERIAL_CH341": "not set", "CONFIG_USB_SERIAL_WHITEHEAT": "not set", "CONFIG_USB_SERIAL_DIGI_ACCELEPORT": "not set", "CONFIG_USB_SERIAL_CP210X": "not set", "CONFIG_USB_SERIAL_CYPRESS_M8": "not set", "CONFIG_USB_SERIAL_EMPEG": "not set", "CONFIG_USB_SERIAL_FTDI_SIO": "y", "CONFIG_USB_SERIAL_VISOR": "not set", "CONFIG_USB_SERIAL_IPAQ": "not set", "CONFIG_USB_SERIAL_IR": "not set", "CONFIG_USB_SERIAL_EDGEPORT": "not set", "CONFIG_USB_SERIAL_EDGEPORT_TI": "not set", "CONFIG_USB_SERIAL_F81232": "not set", "CONFIG_USB_SERIAL_F8153X": "not set", "CONFIG_USB_SERIAL_GARMIN": "not set", "CONFIG_USB_SERIAL_IPW": "not set", "CONFIG_USB_SERIAL_IUU": "not set", "CONFIG_USB_SERIAL_KEYSPAN_PDA": "not set", "CONFIG_USB_SERIAL_KEYSPAN": "not set", "CONFIG_USB_SERIAL_KLSI": "not set", "CONFIG_USB_SERIAL_KOBIL_SCT": "not set", "CONFIG_USB_SERIAL_MCT_U232": "not set", "CONFIG_USB_SERIAL_METRO": "not set", "CONFIG_USB_SERIAL_MOS7720": "not set", "CONFIG_USB_SERIAL_MOS7840": "not set", "CONFIG_USB_SERIAL_MXUPORT": "not set", "CONFIG_USB_SERIAL_NAVMAN": "not set", "CONFIG_USB_SERIAL_PL2303": "y", "CONFIG_USB_SERIAL_OTI6858": "not set", "CONFIG_USB_SERIAL_QCAUX": "not set", "CONFIG_USB_SERIAL_QUALCOMM": "not set", "CONFIG_USB_SERIAL_SPCP8X5": "not set", "CONFIG_USB_SERIAL_SAFE": "not set", "CONFIG_USB_SERIAL_SIERRAWIRELESS": "not set", "CONFIG_USB_SERIAL_SYMBOL": "not set", "CONFIG_USB_SERIAL_TI": "not set", "CONFIG_USB_SERIAL_CYBERJACK": "not set", "CONFIG_USB_SERIAL_OPTION": "not set", "CONFIG_USB_SERIAL_OMNINET": "not set", "CONFIG_USB_SERIAL_OPTICON": "not set", "CONFIG_USB_SERIAL_XSENS_MT": "not set", "CONFIG_USB_SERIAL_WISHBONE": "not set", "CONFIG_USB_SERIAL_SSU100": "not set", "CONFIG_USB_SERIAL_QT2": "not set", "CONFIG_USB_SERIAL_UPD78F0730": "not set", "CONFIG_USB_SERIAL_XR": "not set", "CONFIG_USB_SERIAL_DEBUG": "not set", "CONFIG_USB_USS720": "not set", "CONFIG_USB_EMI62": "not set", "CONFIG_USB_EMI26": "not set", "CONFIG_USB_ADUTUX": "not set", "CONFIG_USB_SEVSEG": "not set", "CONFIG_USB_LEGOTOWER": "not set", "CONFIG_USB_LCD": "not set", "CONFIG_USB_CYPRESS_CY7C63": "not set", "CONFIG_USB_CYTHERM": "not set", "CONFIG_USB_IDMOUSE": "not set", "CONFIG_USB_APPLEDISPLAY": "not set", "CONFIG_APPLE_MFI_FASTCHARGE": "not set", "CONFIG_USB_LJCA": "not set", "CONFIG_USB_SISUSBVGA": "not set", "CONFIG_USB_LD": "not set", "CONFIG_USB_TRANCEVIBRATOR": "not set", "CONFIG_USB_IOWARRIOR": "not set", "CONFIG_USB_TEST": "not set", "CONFIG_USB_EHSET_TEST_FIXTURE": "not set", "CONFIG_USB_ISIGHTFW": "not set", "CONFIG_USB_YUREX": "not set", "CONFIG_USB_EZUSB_FX2": "y", "CONFIG_USB_HUB_USB251XB": "not set", "CONFIG_USB_HSIC_USB3503": "not set", "CONFIG_USB_HSIC_USB4604": "not set", "CONFIG_USB_LINK_LAYER_TEST": "not set", "CONFIG_USB_CHAOSKEY": "not set", "CONFIG_NOP_USB_XCEIV": "not set", "CONFIG_USB_GPIO_VBUS": "not set", "CONFIG_USB_ISP1301": "not set", "CONFIG_USB_GADGET": "not set", "CONFIG_TYPEC": "not set", "CONFIG_USB_ROLE_SWITCH": "not set", "CONFIG_MMC": "y", "CONFIG_MMC_BLOCK": "y", "CONFIG_MMC_BLOCK_MINORS": "8", "CONFIG_SDIO_UART": "not set", "CONFIG_MMC_TEST": "not set", "CONFIG_MMC_DEBUG": "not set", "CONFIG_MMC_SDHCI": "y", "CONFIG_MMC_SDHCI_IO_ACCESSORS": "y", "CONFIG_MMC_SDHCI_PCI": "y", "CONFIG_MMC_RICOH_MMC": "y", "CONFIG_MMC_SDHCI_ACPI": "y", "CONFIG_MMC_SDHCI_PLTFM": "y", "CONFIG_MMC_SDHCI_F_SDH30": "not set", "CONFIG_MMC_WBSD": "not set", "CONFIG_MMC_TIFM_SD": "not set", "CONFIG_MMC_CB710": "not set", "CONFIG_MMC_VIA_SDMMC": "not set", "CONFIG_MMC_VUB300": "not set", "CONFIG_MMC_USHC": "not set", "CONFIG_MMC_USDHI6ROL0": "not set", "CONFIG_MMC_CQHCI": "y", "CONFIG_MMC_HSQ": "not set", "CONFIG_MMC_TOSHIBA_PCI": "not set", "CONFIG_MMC_MTK": "not set", "CONFIG_MMC_SDHCI_XENON": "not set", "CONFIG_SCSI_UFSHCD": "not set", "CONFIG_MEMSTICK": "not set", "CONFIG_NEW_LEDS": "y", "CONFIG_LEDS_CLASS": "y", "CONFIG_LEDS_CLASS_FLASH": "not set", "CONFIG_LEDS_CLASS_MULTICOLOR": "not set", "CONFIG_LEDS_BRIGHTNESS_HW_CHANGED": "not set", "CONFIG_LEDS_APU": "not set", "CONFIG_LEDS_AW200XX": "not set", "CONFIG_LEDS_LM3530": "not set", "CONFIG_LEDS_LM3532": "not set", "CONFIG_LEDS_LM3642": "not set", "CONFIG_LEDS_PCA9532": "not set", "CONFIG_LEDS_GPIO": "not set", "CONFIG_LEDS_LP3944": "not set", "CONFIG_LEDS_LP3952": "not set", "CONFIG_LEDS_PCA955X": "not set", "CONFIG_LEDS_PCA963X": "not set", "CONFIG_LEDS_PCA995X": "not set", "CONFIG_LEDS_BD2606MVV": "not set", "CONFIG_LEDS_BD2802": "not set", "CONFIG_LEDS_INTEL_SS4200": "not set", "CONFIG_LEDS_LT3593": "not set", "CONFIG_LEDS_TCA6507": "not set", "CONFIG_LEDS_TLC591XX": "not set", "CONFIG_LEDS_LM355x": "not set", "CONFIG_LEDS_IS31FL319X": "not set", "CONFIG_LEDS_BLINKM": "not set", "CONFIG_LEDS_MLXCPLD": "not set", "CONFIG_LEDS_MLXREG": "not set", "CONFIG_LEDS_USER": "not set", "CONFIG_LEDS_NIC78BX": "not set", "CONFIG_LEDS_TRIGGERS": "y", "CONFIG_LEDS_TRIGGER_TIMER": "not set", "CONFIG_LEDS_TRIGGER_ONESHOT": "not set", "CONFIG_LEDS_TRIGGER_DISK": "not set", "CONFIG_LEDS_TRIGGER_HEARTBEAT": "not set", "CONFIG_LEDS_TRIGGER_BACKLIGHT": "not set", "CONFIG_LEDS_TRIGGER_CPU": "not set", "CONFIG_LEDS_TRIGGER_ACTIVITY": "not set", "CONFIG_LEDS_TRIGGER_GPIO": "not set", "CONFIG_LEDS_TRIGGER_DEFAULT_ON": "not set", "CONFIG_LEDS_TRIGGER_TRANSIENT": "not set", "CONFIG_LEDS_TRIGGER_CAMERA": "not set", "CONFIG_LEDS_TRIGGER_PANIC": "not set", "CONFIG_LEDS_TRIGGER_NETDEV": "not set", "CONFIG_LEDS_TRIGGER_PATTERN": "not set", "CONFIG_LEDS_TRIGGER_TTY": "not set", "CONFIG_LEDS_TRIGGER_INPUT_EVENTS": "not set", "CONFIG_ACCESSIBILITY": "not set", "CONFIG_INFINIBAND": "not set", "CONFIG_EDAC_ATOMIC_SCRUB": "y", "CONFIG_EDAC_SUPPORT": "y", "CONFIG_RTC_LIB": "y", "CONFIG_RTC_MC146818_LIB": "y", "CONFIG_RTC_CLASS": "y", "CONFIG_RTC_HCTOSYS": "y", "CONFIG_RTC_HCTOSYS_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_SYSTOHC": "y", "CONFIG_RTC_SYSTOHC_DEVICE": "\\"rtc0\\"", "CONFIG_RTC_DEBUG": "not set", "CONFIG_RTC_NVMEM": "y", "CONFIG_RTC_INTF_SYSFS": "y", "CONFIG_RTC_INTF_PROC": "y", "CONFIG_RTC_INTF_DEV": "y", "CONFIG_RTC_INTF_DEV_UIE_EMUL": "not set", "CONFIG_RTC_DRV_TEST": "not set", "CONFIG_RTC_DRV_ABB5ZES3": "not set", "CONFIG_RTC_DRV_ABEOZ9": "not set", "CONFIG_RTC_DRV_ABX80X": "not set", "CONFIG_RTC_DRV_DS1307": "not set", "CONFIG_RTC_DRV_DS1374": "not set", "CONFIG_RTC_DRV_DS1672": "not set", "CONFIG_RTC_DRV_MAX6900": "not set", "CONFIG_RTC_DRV_MAX31335": "not set", "CONFIG_RTC_DRV_RS5C372": "not set", "CONFIG_RTC_DRV_ISL1208": "not set", "CONFIG_RTC_DRV_ISL12022": "not set", "CONFIG_RTC_DRV_X1205": "not set", "CONFIG_RTC_DRV_PCF8523": "not set", "CONFIG_RTC_DRV_PCF85063": "not set", "CONFIG_RTC_DRV_PCF85363": "not set", "CONFIG_RTC_DRV_PCF8563": "not set", "CONFIG_RTC_DRV_PCF8583": "not set", "CONFIG_RTC_DRV_M41T80": "not set", "CONFIG_RTC_DRV_BQ32K": "not set", "CONFIG_RTC_DRV_S35390A": "not set", "CONFIG_RTC_DRV_FM3130": "not set", "CONFIG_RTC_DRV_RX8010": "not set", "CONFIG_RTC_DRV_RX8111": "not set", "CONFIG_RTC_DRV_RX8581": "not set", "CONFIG_RTC_DRV_RX8025": "not set", "CONFIG_RTC_DRV_EM3027": "not set", "CONFIG_RTC_DRV_RV3028": "not set", "CONFIG_RTC_DRV_RV3032": "not set", "CONFIG_RTC_DRV_RV8803": "not set", "CONFIG_RTC_DRV_SD2405AL": "not set", "CONFIG_RTC_DRV_SD3078": "not set", "CONFIG_RTC_I2C_AND_SPI": "y", "CONFIG_RTC_DRV_DS3232": "not set", "CONFIG_RTC_DRV_PCF2127": "not set", "CONFIG_RTC_DRV_RV3029C2": "not set", "CONFIG_RTC_DRV_RX6110": "not set", "CONFIG_RTC_DRV_CMOS": "y", "CONFIG_RTC_DRV_DS1286": "not set", "CONFIG_RTC_DRV_DS1511": "not set", "CONFIG_RTC_DRV_DS1553": "not set", "CONFIG_RTC_DRV_DS1685_FAMILY": "not set", "CONFIG_RTC_DRV_DS1742": "not set", "CONFIG_RTC_DRV_DS2404": "not set", "CONFIG_RTC_DRV_STK17TA8": "not set", "CONFIG_RTC_DRV_M48T86": "not set", "CONFIG_RTC_DRV_M48T35": "not set", "CONFIG_RTC_DRV_M48T59": "not set", "CONFIG_RTC_DRV_MSM6242": "not set", "CONFIG_RTC_DRV_RP5C01": "not set", "CONFIG_RTC_DRV_FTRTC010": "not set", "CONFIG_RTC_DRV_GOLDFISH": "not set", "CONFIG_DMADEVICES": "not set", "CONFIG_SYNC_FILE": "y", "CONFIG_SW_SYNC": "not set", "CONFIG_UDMABUF": "not set", "CONFIG_DMABUF_MOVE_NOTIFY": "not set", "CONFIG_DMABUF_DEBUG": "not set", "CONFIG_DMABUF_SELFTESTS": "not set", "CONFIG_DMABUF_HEAPS": "not set", "CONFIG_DMABUF_SYSFS_STATS": "not set", "CONFIG_UIO": "not set", "CONFIG_VFIO": "not set", "CONFIG_VIRT_DRIVERS": "not set", "CONFIG_VIRTIO_ANCHOR": "y", "CONFIG_VIRTIO": "y", "CONFIG_VIRTIO_PCI_LIB": "y", "CONFIG_VIRTIO_PCI_LIB_LEGACY": "y", "CONFIG_VIRTIO_MENU": "y", "CONFIG_VIRTIO_PCI": "y", "CONFIG_VIRTIO_PCI_ADMIN_LEGACY": "y", "CONFIG_VIRTIO_PCI_LEGACY": "y", "CONFIG_VIRTIO_BALLOON": "y", "CONFIG_VIRTIO_INPUT": "m", "CONFIG_VIRTIO_MMIO": "y", "CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES": "not set", "CONFIG_VIRTIO_DMA_SHARED_BUFFER": "y", "CONFIG_VIRTIO_DEBUG": "not set", "CONFIG_VDPA": "not set", "CONFIG_VHOST_MENU": "y", "CONFIG_VHOST_NET": "not set", "CONFIG_VHOST_VSOCK": "not set", "CONFIG_VHOST_CROSS_ENDIAN_LEGACY": "not set", "CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL": "y", "CONFIG_HYPERV": "not set", "CONFIG_GREYBUS": "not set", "CONFIG_COMEDI": "not set", "CONFIG_STAGING": "not set", "CONFIG_GOLDFISH": "not set", "CONFIG_CHROME_PLATFORMS": "not set", "CONFIG_MELLANOX_PLATFORM": "not set", "CONFIG_SURFACE_PLATFORMS": "y", "CONFIG_SURFACE_3_POWER_OPREGION": "not set", "CONFIG_SURFACE_GPE": "not set", "CONFIG_SURFACE_HOTPLUG": "not set", "CONFIG_SURFACE_PRO3_BUTTON": "not set", "CONFIG_X86_PLATFORM_DEVICES": "y", "CONFIG_ACPI_WMI": "m", "CONFIG_WMI_BMOF": "m", "CONFIG_HUAWEI_WMI": "not set", "CONFIG_MXM_WMI": "not set", "CONFIG_NVIDIA_WMI_EC_BACKLIGHT": "not set", "CONFIG_XIAOMI_WMI": "not set", "CONFIG_GIGABYTE_WMI": "not set", "CONFIG_YOGABOOK": "not set", "CONFIG_ACERHDF": "not set", "CONFIG_ACER_WIRELESS": "not set", "CONFIG_ACER_WMI": "not set", "CONFIG_AMD_PMC": "not set", "CONFIG_AMD_HSMP": "not set", "CONFIG_AMD_WBRF": "not set", "CONFIG_ADV_SWBUTTON": "not set", "CONFIG_APPLE_GMUX": "not set", "CONFIG_ASUS_LAPTOP": "not set", "CONFIG_ASUS_WIRELESS": "not set", "CONFIG_ASUS_WMI": "not set", "CONFIG_ASUS_TF103C_DOCK": "not set", "CONFIG_EEEPC_LAPTOP": "not set", "CONFIG_X86_PLATFORM_DRIVERS_DELL": "not set", "CONFIG_AMILO_RFKILL": "not set", "CONFIG_FUJITSU_LAPTOP": "not set", "CONFIG_FUJITSU_TABLET": "not set", "CONFIG_GPD_POCKET_FAN": "not set", "CONFIG_X86_PLATFORM_DRIVERS_HP": "not set", "CONFIG_WIRELESS_HOTKEY": "not set", "CONFIG_IBM_RTL": "not set", "CONFIG_IDEAPAD_LAPTOP": "not set", "CONFIG_SENSORS_HDAPS": "not set", "CONFIG_THINKPAD_ACPI": "not set", "CONFIG_THINKPAD_LMI": "not set", "CONFIG_INTEL_ATOMISP2_PM": "not set", "CONFIG_INTEL_IFS": "not set", "CONFIG_INTEL_SAR_INT1092": "not set", "CONFIG_INTEL_SPEED_SELECT_INTERFACE": "not set", "CONFIG_INTEL_WMI_SBL_FW_UPDATE": "not set", "CONFIG_INTEL_WMI_THUNDERBOLT": "not set", "CONFIG_INTEL_UNCORE_FREQ_CONTROL": "not set", "CONFIG_INTEL_HID_EVENT": "not set", "CONFIG_INTEL_VBTN": "not set", "CONFIG_INTEL_INT0002_VGPIO": "not set", "CONFIG_INTEL_OAKTRAIL": "not set", "CONFIG_INTEL_PUNIT_IPC": "not set", "CONFIG_INTEL_RST": "not set", "CONFIG_INTEL_SMARTCONNECT": "not set", "CONFIG_INTEL_TURBO_MAX_3": "not set", "CONFIG_INTEL_VSEC": "not set", "CONFIG_ACPI_QUICKSTART": "not set", "CONFIG_MEEGOPAD_ANX7428": "not set", "CONFIG_MSI_EC": "not set", "CONFIG_MSI_LAPTOP": "not set", "CONFIG_MSI_WMI": "not set", "CONFIG_MSI_WMI_PLATFORM": "not set", "CONFIG_PCENGINES_APU2": "not set", "CONFIG_BARCO_P50_GPIO": "not set", "CONFIG_SAMSUNG_LAPTOP": "not set", "CONFIG_SAMSUNG_Q10": "not set", "CONFIG_TOSHIBA_BT_RFKILL": "not set", "CONFIG_TOSHIBA_HAPS": "not set", "CONFIG_TOSHIBA_WMI": "not set", "CONFIG_ACPI_CMPC": "not set", "CONFIG_COMPAL_LAPTOP": "not set", "CONFIG_LG_LAPTOP": "not set", "CONFIG_PANASONIC_LAPTOP": "not set", "CONFIG_SONY_LAPTOP": "not set", "CONFIG_SYSTEM76_ACPI": "not set", "CONFIG_TOPSTAR_LAPTOP": "not set", "CONFIG_SERIAL_MULTI_INSTANTIATE": "not set", "CONFIG_MLX_PLATFORM": "not set", "CONFIG_INSPUR_PLATFORM_PROFILE": "not set", "CONFIG_LENOVO_WMI_CAMERA": "not set", "CONFIG_INTEL_IPS": "not set", "CONFIG_INTEL_SCU_PCI": "not set", "CONFIG_INTEL_SCU_PLATFORM": "not set", "CONFIG_SIEMENS_SIMATIC_IPC": "not set", "CONFIG_WINMATE_FM07_KEYS": "not set", "CONFIG_P2SB": "y", "CONFIG_HAVE_CLK": "y", "CONFIG_HAVE_CLK_PREPARE": "y", "CONFIG_COMMON_CLK": "y", "CONFIG_COMMON_CLK_MAX9485": "not set", "CONFIG_COMMON_CLK_SI5341": "not set", "CONFIG_COMMON_CLK_SI5351": "not set", "CONFIG_COMMON_CLK_SI544": "not set", "CONFIG_COMMON_CLK_CDCE706": "not set", "CONFIG_COMMON_CLK_CS2000_CP": "not set", "CONFIG_XILINX_VCU": "not set", "CONFIG_HWSPINLOCK": "not set", "CONFIG_CLKEVT_I8253": "y", "CONFIG_I8253_LOCK": "y", "CONFIG_CLKBLD_I8253": "y", "CONFIG_MAILBOX": "y", "CONFIG_PCC": "y", "CONFIG_ALTERA_MBOX": "not set", "CONFIG_IOMMU_IOVA": "y", "CONFIG_IOMMU_API": "y", "CONFIG_IOMMU_SUPPORT": "y", "CONFIG_IOMMU_DEBUGFS": "not set", "CONFIG_IOMMU_DEFAULT_DMA_STRICT": "not set", "CONFIG_IOMMU_DEFAULT_DMA_LAZY": "y", "CONFIG_IOMMU_DEFAULT_PASSTHROUGH": "not set", "CONFIG_IOMMU_DMA": "y", "CONFIG_AMD_IOMMU": "not set", "CONFIG_DMAR_TABLE": "y", "CONFIG_INTEL_IOMMU": "y", "CONFIG_INTEL_IOMMU_SVM": "not set", "CONFIG_INTEL_IOMMU_DEFAULT_ON": "not set", "CONFIG_INTEL_IOMMU_FLOPPY_WA": "y", "CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON": "y", "CONFIG_INTEL_IOMMU_PERF_EVENTS": "y", "CONFIG_IOMMUFD": "not set", "CONFIG_IRQ_REMAP": "y", "CONFIG_VIRTIO_IOMMU": "not set", "CONFIG_REMOTEPROC": "not set", "CONFIG_RPMSG_QCOM_GLINK_RPM": "not set", "CONFIG_RPMSG_VIRTIO": "not set", "CONFIG_SOUNDWIRE": "not set", "CONFIG_WPCM450_SOC": "not set", "CONFIG_SOC_TI": "not set", "CONFIG_PM_DEVFREQ": "not set", "CONFIG_EXTCON": "not set", "CONFIG_MEMORY": "not set", "CONFIG_IIO": "not set", "CONFIG_NTB": "not set", "CONFIG_PWM": "not set", "CONFIG_IPACK_BUS": "not set", "CONFIG_RESET_CONTROLLER": "not set", "CONFIG_GENERIC_PHY": "not set", "CONFIG_USB_LGM_PHY": "not set", "CONFIG_PHY_CAN_TRANSCEIVER": "not set", "CONFIG_BCM_KONA_USB2_PHY": "not set", "CONFIG_PHY_PXA_28NM_HSIC": "not set", "CONFIG_PHY_PXA_28NM_USB2": "not set", "CONFIG_PHY_INTEL_LGM_EMMC": "not set", "CONFIG_POWERCAP": "not set", "CONFIG_MCB": "not set", "CONFIG_DWC_PCIE_PMU": "not set", "CONFIG_RAS": "not set", "CONFIG_USB4": "not set", "CONFIG_ANDROID_BINDER_IPC": "not set", "CONFIG_LIBNVDIMM": "not set", "CONFIG_DAX": "not set", "CONFIG_NVMEM": "y", "CONFIG_NVMEM_SYSFS": "y", "CONFIG_NVMEM_LAYOUTS": "not set", "CONFIG_NVMEM_RMEM": "not set", "CONFIG_STM": "not set", "CONFIG_INTEL_TH": "not set", "CONFIG_FPGA": "not set", "CONFIG_TEE": "not set", "CONFIG_SIOX": "not set", "CONFIG_SLIMBUS": "not set", "CONFIG_INTERCONNECT": "not set", "CONFIG_COUNTER": "not set", "CONFIG_MOST": "not set", "CONFIG_PECI": "not set", "CONFIG_HTE": "not set", "CONFIG_DCACHE_WORD_ACCESS": "y", "CONFIG_VALIDATE_FS_PARSER": "not set", "CONFIG_FS_IOMAP": "y", "CONFIG_FS_STACK": "y", "CONFIG_BUFFER_HEAD": "y", "CONFIG_LEGACY_DIRECT_IO": "y", "CONFIG_EXT2_FS": "not set", "CONFIG_EXT3_FS": "not set", "CONFIG_EXT4_FS": "y", "CONFIG_EXT4_USE_FOR_EXT2": "y", "CONFIG_EXT4_FS_POSIX_ACL": "y", "CONFIG_EXT4_FS_SECURITY": "y", "CONFIG_EXT4_DEBUG": "not set", "CONFIG_JBD2": "y", "CONFIG_JBD2_DEBUG": "not set", "CONFIG_FS_MBCACHE": "y", "CONFIG_REISERFS_FS": "not set", "CONFIG_JFS_FS": "not set", "CONFIG_XFS_FS": "not set", "CONFIG_GFS2_FS": "not set", "CONFIG_OCFS2_FS": "not set", "CONFIG_BTRFS_FS": "y", "CONFIG_BTRFS_FS_POSIX_ACL": "y", "CONFIG_BTRFS_FS_RUN_SANITY_TESTS": "not set", "CONFIG_BTRFS_DEBUG": "not set", "CONFIG_BTRFS_ASSERT": "not set", "CONFIG_BTRFS_FS_REF_VERIFY": "not set", "CONFIG_NILFS2_FS": "not set", "CONFIG_F2FS_FS": "not set", "CONFIG_BCACHEFS_FS": "not set", "CONFIG_FS_POSIX_ACL": "y", "CONFIG_EXPORTFS": "y", "CONFIG_EXPORTFS_BLOCK_OPS": "not set", "CONFIG_FILE_LOCKING": "y", "CONFIG_FS_ENCRYPTION": "y", "CONFIG_FS_ENCRYPTION_ALGS": "y", "CONFIG_FS_VERITY": "not set", "CONFIG_FSNOTIFY": "y", "CONFIG_DNOTIFY": "y", "CONFIG_INOTIFY_USER": "y", "CONFIG_FANOTIFY": "not set", "CONFIG_QUOTA": "not set", "CONFIG_AUTOFS_FS": "y", "CONFIG_FUSE_FS": "m", "CONFIG_CUSE": "m", "CONFIG_VIRTIO_FS": "not set", "CONFIG_FUSE_PASSTHROUGH": "y", "CONFIG_OVERLAY_FS": "y", "CONFIG_OVERLAY_FS_REDIRECT_DIR": "not set", "CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW": "y", "CONFIG_OVERLAY_FS_INDEX": "not set", "CONFIG_OVERLAY_FS_XINO_AUTO": "not set", "CONFIG_OVERLAY_FS_METACOPY": "not set", "CONFIG_OVERLAY_FS_DEBUG": "not set", "CONFIG_NETFS_SUPPORT": "y", "CONFIG_NETFS_STATS": "not set", "CONFIG_NETFS_DEBUG": "not set", "CONFIG_FSCACHE": "not set", "CONFIG_ISO9660_FS": "y", "CONFIG_JOLIET": "not set", "CONFIG_ZISOFS": "y", "CONFIG_UDF_FS": "not set", "CONFIG_FAT_FS": "y", "CONFIG_MSDOS_FS": "y", "CONFIG_VFAT_FS": "y", "CONFIG_VFAT_FS_NO_DUALNAMES": "not set", "CONFIG_FAT_DEFAULT_CODEPAGE": "437", "CONFIG_FAT_DEFAULT_IOCHARSET": "\\"iso8859-1\\"", "CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES": "not set", "CONFIG_FAT_DEFAULT_UTF8": "not set", "CONFIG_EXFAT_FS": "not set", "CONFIG_NTFS3_FS": "not set", "CONFIG_NTFS_FS": "not set", "CONFIG_PROC_FS": "y", "CONFIG_PROC_KCORE": "y", "CONFIG_PROC_SYSCTL": "y", "CONFIG_PROC_PAGE_MONITOR": "y", "CONFIG_PROC_CHILDREN": "y", "CONFIG_PROC_PID_ARCH_STATUS": "y", "CONFIG_KERNFS": "y", "CONFIG_SYSFS": "y", "CONFIG_TMPFS": "y", "CONFIG_TMPFS_POSIX_ACL": "y", "CONFIG_TMPFS_XATTR": "y", "CONFIG_TMPFS_INODE64": "not set", "CONFIG_TMPFS_QUOTA": "not set", "CONFIG_HUGETLBFS": "not set", "CONFIG_ARCH_HAS_GIGANTIC_PAGE": "y", "CONFIG_CONFIGFS_FS": "m", "CONFIG_EFIVAR_FS": "y", "CONFIG_MISC_FILESYSTEMS": "y", "CONFIG_ORANGEFS_FS": "not set", "CONFIG_ADFS_FS": "not set", "CONFIG_AFFS_FS": "not set", "CONFIG_ECRYPT_FS": "m", "CONFIG_ECRYPT_FS_MESSAGING": "y", "CONFIG_HFS_FS": "not set", "CONFIG_HFSPLUS_FS": "not set", "CONFIG_BEFS_FS": "not set", "CONFIG_BFS_FS": "not set", "CONFIG_EFS_FS": "not set", "CONFIG_CRAMFS": "not set", "CONFIG_SQUASHFS": "not set", "CONFIG_VXFS_FS": "not set", "CONFIG_MINIX_FS": "not set", "CONFIG_OMFS_FS": "not set", "CONFIG_HPFS_FS": "not set", "CONFIG_QNX4FS_FS": "not set", "CONFIG_QNX6FS_FS": "not set", "CONFIG_ROMFS_FS": "m", "CONFIG_ROMFS_BACKED_BY_BLOCK": "y", "CONFIG_ROMFS_ON_BLOCK": "y", "CONFIG_PSTORE": "not set", "CONFIG_SYSV_FS": "not set", "CONFIG_UFS_FS": "not set", "CONFIG_EROFS_FS": "not set", "CONFIG_AUFS_FS": "not set", "CONFIG_NETWORK_FILESYSTEMS": "y", "CONFIG_NFS_FS": "y", "CONFIG_NFS_V2": "not set", "CONFIG_NFS_DEF_FILE_IO_SIZE": "4096", "CONFIG_NFS_V3": "y", "CONFIG_NFS_V3_ACL": "not set", "CONFIG_NFS_V4": "y", "CONFIG_NFS_SWAP": "not set", "CONFIG_NFS_V4_1": "not set", "CONFIG_ROOT_NFS": "y", "CONFIG_NFS_FSCACHE": "not set", "CONFIG_NFS_USE_LEGACY_DNS": "not set", "CONFIG_NFS_USE_KERNEL_DNS": "y", "CONFIG_NFS_DISABLE_UDP_SUPPORT": "not set", "CONFIG_NFSD": "m", "CONFIG_NFSD_V2": "not set", "CONFIG_NFSD_V3_ACL": "not set", "CONFIG_NFSD_V4": "y", "CONFIG_NFSD_BLOCKLAYOUT": "not set", "CONFIG_NFSD_SCSILAYOUT": "not set", "CONFIG_NFSD_FLEXFILELAYOUT": "not set", "CONFIG_NFSD_V4_SECURITY_LABEL": "not set", "CONFIG_NFSD_LEGACY_CLIENT_TRACKING": "not set", "CONFIG_GRACE_PERIOD": "y", "CONFIG_LOCKD": "y", "CONFIG_LOCKD_V4": "y", "CONFIG_NFS_COMMON": "y", "CONFIG_NFS_LOCALIO": "not set", "CONFIG_SUNRPC": "y", "CONFIG_SUNRPC_GSS": "y", "CONFIG_RPCSEC_GSS_KRB5": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA1": "y", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_CAMELLIA": "not set", "CONFIG_RPCSEC_GSS_KRB5_ENCTYPES_AES_SHA2": "not set", "CONFIG_SUNRPC_DEBUG": "not set", "CONFIG_CEPH_FS": "not set", "CONFIG_CIFS": "y", "CONFIG_CIFS_STATS2": "y", "CONFIG_CIFS_ALLOW_INSECURE_LEGACY": "y", "CONFIG_CIFS_UPCALL": "not set", "CONFIG_CIFS_XATTR": "y", "CONFIG_CIFS_POSIX": "y", "CONFIG_CIFS_DEBUG": "y", "CONFIG_CIFS_DEBUG2": "not set", "CONFIG_CIFS_DEBUG_DUMP_KEYS": "not set", "CONFIG_CIFS_DFS_UPCALL": "not set", "CONFIG_CIFS_SWN_UPCALL": "not set", "CONFIG_CIFS_ROOT": "not set", "CONFIG_CIFS_COMPRESSION": "not set", "CONFIG_SMB_SERVER": "not set", "CONFIG_SMBFS": "y", "CONFIG_CODA_FS": "not set", "CONFIG_AFS_FS": "not set", "CONFIG_NLS": "y", "CONFIG_NLS_DEFAULT": "\\"iso8859-1\\"", "CONFIG_NLS_CODEPAGE_437": "y", "CONFIG_NLS_CODEPAGE_737": "m", "CONFIG_NLS_CODEPAGE_775": "m", "CONFIG_NLS_CODEPAGE_850": "m", "CONFIG_NLS_CODEPAGE_852": "m", "CONFIG_NLS_CODEPAGE_855": "m", "CONFIG_NLS_CODEPAGE_857": "m", "CONFIG_NLS_CODEPAGE_860": "m", "CONFIG_NLS_CODEPAGE_861": "m", "CONFIG_NLS_CODEPAGE_862": "m", "CONFIG_NLS_CODEPAGE_863": "m", "CONFIG_NLS_CODEPAGE_864": "m", "CONFIG_NLS_CODEPAGE_865": "m", "CONFIG_NLS_CODEPAGE_866": "m", "CONFIG_NLS_CODEPAGE_869": "m", "CONFIG_NLS_CODEPAGE_936": "m", "CONFIG_NLS_CODEPAGE_950": "m", "CONFIG_NLS_CODEPAGE_932": "m", "CONFIG_NLS_CODEPAGE_949": "m", "CONFIG_NLS_CODEPAGE_874": "m", "CONFIG_NLS_ISO8859_8": "m", "CONFIG_NLS_CODEPAGE_1250": "m", "CONFIG_NLS_CODEPAGE_1251": "m", "CONFIG_NLS_ASCII": "m", "CONFIG_NLS_ISO8859_1": "y", "CONFIG_NLS_ISO8859_2": "m", "CONFIG_NLS_ISO8859_3": "m", "CONFIG_NLS_ISO8859_4": "m", "CONFIG_NLS_ISO8859_5": "m", "CONFIG_NLS_ISO8859_6": "m", "CONFIG_NLS_ISO8859_7": "m", "CONFIG_NLS_ISO8859_9": "m", "CONFIG_NLS_ISO8859_13": "m", "CONFIG_NLS_ISO8859_14": "m", "CONFIG_NLS_ISO8859_15": "m", "CONFIG_NLS_KOI8_R": "m", "CONFIG_NLS_KOI8_U": "m", "CONFIG_NLS_MAC_ROMAN": "not set", "CONFIG_NLS_MAC_CELTIC": "not set", "CONFIG_NLS_MAC_CENTEURO": "not set", "CONFIG_NLS_MAC_CROATIAN": "not set", "CONFIG_NLS_MAC_CYRILLIC": "not set", "CONFIG_NLS_MAC_GAELIC": "not set", "CONFIG_NLS_MAC_GREEK": "not set", "CONFIG_NLS_MAC_ICELAND": "not set", "CONFIG_NLS_MAC_INUIT": "not set", "CONFIG_NLS_MAC_ROMANIAN": "not set", "CONFIG_NLS_MAC_TURKISH": "not set", "CONFIG_NLS_UTF8": "m", "CONFIG_NLS_UCS2_UTILS": "y", "CONFIG_DLM": "not set", "CONFIG_UNICODE": "not set", "CONFIG_IO_WQ": "y", "CONFIG_KEYS": "y", "CONFIG_KEYS_REQUEST_CACHE": "not set", "CONFIG_PERSISTENT_KEYRINGS": "not set", "CONFIG_TRUSTED_KEYS": "not set", "CONFIG_ENCRYPTED_KEYS": "y", "CONFIG_USER_DECRYPTED_DATA": "not set", "CONFIG_KEY_DH_OPERATIONS": "not set", "CONFIG_SECURITY_DMESG_RESTRICT": "not set", "CONFIG_PROC_MEM_ALWAYS_FORCE": "y", "CONFIG_PROC_MEM_FORCE_PTRACE": "not set", "CONFIG_PROC_MEM_NO_FORCE": "not set", "CONFIG_SECURITY": "y", "CONFIG_SECURITYFS": "not set", "CONFIG_SECURITY_NETWORK": "y", "CONFIG_SECURITY_NETWORK_XFRM": "not set", "CONFIG_SECURITY_PATH": "y", "CONFIG_INTEL_TXT": "not set", "CONFIG_HARDENED_USERCOPY": "not set", "CONFIG_FORTIFY_SOURCE": "not set", "CONFIG_STATIC_USERMODEHELPER": "not set", "CONFIG_SECURITY_SMACK": "not set", "CONFIG_SECURITY_TOMOYO": "not set", "CONFIG_SECURITY_APPARMOR": "not set", "CONFIG_SECURITY_LOADPIN": "not set", "CONFIG_SECURITY_YAMA": "not set", "CONFIG_SECURITY_SAFESETID": "not set", "CONFIG_SECURITY_LOCKDOWN_LSM": "not set", "CONFIG_SECURITY_LANDLOCK": "y", "CONFIG_INTEGRITY": "y", "CONFIG_INTEGRITY_SIGNATURE": "not set", "CONFIG_IMA": "not set", "CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT": "not set", "CONFIG_EVM": "not set", "CONFIG_DEFAULT_SECURITY_DAC": "y", "CONFIG_LSM": "\\"landlock,lockdown,yama,loadpin,safesetid,ipe,bpf\\"", "CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE": "y", "CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO": "y", "CONFIG_INIT_STACK_NONE": "not set", "CONFIG_INIT_STACK_ALL_PATTERN": "not set", "CONFIG_INIT_STACK_ALL_ZERO": "y", "CONFIG_GCC_PLUGIN_STACKLEAK": "not set", "CONFIG_INIT_ON_ALLOC_DEFAULT_ON": "not set", "CONFIG_INIT_ON_FREE_DEFAULT_ON": "not set", "CONFIG_CC_HAS_ZERO_CALL_USED_REGS": "y", "CONFIG_ZERO_CALL_USED_REGS": "not set", "CONFIG_LIST_HARDENED": "not set", "CONFIG_BUG_ON_DATA_CORRUPTION": "not set", "CONFIG_RANDSTRUCT_NONE": "y", "CONFIG_RANDSTRUCT_FULL": "not set", "CONFIG_RANDSTRUCT_PERFORMANCE": "not set", "CONFIG_XOR_BLOCKS": "y", "CONFIG_ASYNC_CORE": "y", "CONFIG_ASYNC_MEMCPY": "y", "CONFIG_ASYNC_XOR": "y", "CONFIG_ASYNC_PQ": "y", "CONFIG_ASYNC_RAID6_RECOV": "y", "CONFIG_CRYPTO": "y", "CONFIG_CRYPTO_ALGAPI": "y", "CONFIG_CRYPTO_ALGAPI2": "y", "CONFIG_CRYPTO_AEAD": "y", "CONFIG_CRYPTO_AEAD2": "y", "CONFIG_CRYPTO_SIG": "y", "CONFIG_CRYPTO_SIG2": "y", "CONFIG_CRYPTO_SKCIPHER": "y", "CONFIG_CRYPTO_SKCIPHER2": "y", "CONFIG_CRYPTO_HASH": "y", "CONFIG_CRYPTO_HASH2": "y", "CONFIG_CRYPTO_RNG": "y", "CONFIG_CRYPTO_RNG2": "y", "CONFIG_CRYPTO_RNG_DEFAULT": "y", "CONFIG_CRYPTO_AKCIPHER2": "y", "CONFIG_CRYPTO_AKCIPHER": "y", "CONFIG_CRYPTO_KPP2": "y", "CONFIG_CRYPTO_KPP": "y", "CONFIG_CRYPTO_ACOMP2": "y", "CONFIG_CRYPTO_MANAGER": "y", "CONFIG_CRYPTO_MANAGER2": "y", "CONFIG_CRYPTO_USER": "not set", "CONFIG_CRYPTO_MANAGER_DISABLE_TESTS": "y", "CONFIG_CRYPTO_NULL": "y", "CONFIG_CRYPTO_NULL2": "y", "CONFIG_CRYPTO_PCRYPT": "not set", "CONFIG_CRYPTO_CRYPTD": "not set", "CONFIG_CRYPTO_AUTHENC": "y", "CONFIG_CRYPTO_TEST": "m", "CONFIG_CRYPTO_ENGINE": "y", "CONFIG_CRYPTO_RSA": "y", "CONFIG_CRYPTO_DH": "not set", "CONFIG_CRYPTO_ECC": "y", "CONFIG_CRYPTO_ECDH": "y", "CONFIG_CRYPTO_ECDSA": "not set", "CONFIG_CRYPTO_ECRDSA": "not set", "CONFIG_CRYPTO_CURVE25519": "not set", "CONFIG_CRYPTO_AES": "y", "CONFIG_CRYPTO_AES_TI": "not set", "CONFIG_CRYPTO_ARIA": "not set", "CONFIG_CRYPTO_BLOWFISH": "m", "CONFIG_CRYPTO_BLOWFISH_COMMON": "m", "CONFIG_CRYPTO_CAMELLIA": "m", "CONFIG_CRYPTO_CAST_COMMON": "m", "CONFIG_CRYPTO_CAST5": "m", "CONFIG_CRYPTO_CAST6": "m", "CONFIG_CRYPTO_DES": "y", "CONFIG_CRYPTO_FCRYPT": "not set", "CONFIG_CRYPTO_SERPENT": "m", "CONFIG_CRYPTO_SM4_GENERIC": "not set", "CONFIG_CRYPTO_TWOFISH": "m", "CONFIG_CRYPTO_TWOFISH_COMMON": "m", "CONFIG_CRYPTO_ADIANTUM": "not set", "CONFIG_CRYPTO_CHACHA20": "not set", "CONFIG_CRYPTO_CBC": "y", "CONFIG_CRYPTO_CTR": "y", "CONFIG_CRYPTO_CTS": "y", "CONFIG_CRYPTO_ECB": "y", "CONFIG_CRYPTO_HCTR2": "not set", "CONFIG_CRYPTO_KEYWRAP": "not set", "CONFIG_CRYPTO_LRW": "not set", "CONFIG_CRYPTO_PCBC": "not set", "CONFIG_CRYPTO_XTS": "y", "CONFIG_CRYPTO_AEGIS128": "not set", "CONFIG_CRYPTO_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_CCM": "y", "CONFIG_CRYPTO_GCM": "y", "CONFIG_CRYPTO_GENIV": "y", "CONFIG_CRYPTO_SEQIV": "y", "CONFIG_CRYPTO_ECHAINIV": "y", "CONFIG_CRYPTO_ESSIV": "y", "CONFIG_CRYPTO_BLAKE2B": "y", "CONFIG_CRYPTO_CMAC": "y", "CONFIG_CRYPTO_GHASH": "y", "CONFIG_CRYPTO_HMAC": "y", "CONFIG_CRYPTO_MD4": "y", "CONFIG_CRYPTO_MD5": "y", "CONFIG_CRYPTO_MICHAEL_MIC": "m", "CONFIG_CRYPTO_POLY1305": "not set", "CONFIG_CRYPTO_RMD160": "not set", "CONFIG_CRYPTO_SHA1": "y", "CONFIG_CRYPTO_SHA256": "y", "CONFIG_CRYPTO_SHA512": "y", "CONFIG_CRYPTO_SHA3": "y", "CONFIG_CRYPTO_SM3_GENERIC": "not set", "CONFIG_CRYPTO_STREEBOG": "not set", "CONFIG_CRYPTO_VMAC": "not set", "CONFIG_CRYPTO_WP512": "m", "CONFIG_CRYPTO_XCBC": "m", "CONFIG_CRYPTO_XXHASH": "y", "CONFIG_CRYPTO_CRC32C": "y", "CONFIG_CRYPTO_CRC32": "not set", "CONFIG_CRYPTO_CRCT10DIF": "m", "CONFIG_CRYPTO_DEFLATE": "y", "CONFIG_CRYPTO_LZO": "not set", "CONFIG_CRYPTO_842": "not set", "CONFIG_CRYPTO_LZ4": "not set", "CONFIG_CRYPTO_LZ4HC": "not set", "CONFIG_CRYPTO_ZSTD": "not set", "CONFIG_CRYPTO_ANSI_CPRNG": "not set", "CONFIG_CRYPTO_DRBG_MENU": "y", "CONFIG_CRYPTO_DRBG_HMAC": "y", "CONFIG_CRYPTO_DRBG_HASH": "not set", "CONFIG_CRYPTO_DRBG_CTR": "not set", "CONFIG_CRYPTO_DRBG": "y", "CONFIG_CRYPTO_JITTERENTROPY": "y", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKS": "64", "CONFIG_CRYPTO_JITTERENTROPY_MEMORY_BLOCKSIZE": "32", "CONFIG_CRYPTO_JITTERENTROPY_OSR": "1", "CONFIG_CRYPTO_USER_API": "m", "CONFIG_CRYPTO_USER_API_HASH": "m", "CONFIG_CRYPTO_USER_API_SKCIPHER": "m", "CONFIG_CRYPTO_USER_API_RNG": "m", "CONFIG_CRYPTO_USER_API_RNG_CAVP": "not set", "CONFIG_CRYPTO_USER_API_AEAD": "m", "CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE": "not set", "CONFIG_CRYPTO_HASH_INFO": "y", "CONFIG_CRYPTO_AES_NI_INTEL": "not set", "CONFIG_CRYPTO_BLOWFISH_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_CAST5_AVX_X86_64": "not set", "CONFIG_CRYPTO_CAST6_AVX_X86_64": "not set", "CONFIG_CRYPTO_DES3_EDE_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_SSE2_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX_X86_64": "not set", "CONFIG_CRYPTO_SERPENT_AVX2_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64": "not set", "CONFIG_CRYPTO_TWOFISH_X86_64_3WAY": "not set", "CONFIG_CRYPTO_TWOFISH_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64": "not set", "CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64": "not set", "CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64": "not set", "CONFIG_CRYPTO_AEGIS128_AESNI_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_SSE2": "not set", "CONFIG_CRYPTO_NHPOLY1305_AVX2": "not set", "CONFIG_CRYPTO_BLAKE2S_X86": "not set", "CONFIG_CRYPTO_POLYVAL_CLMUL_NI": "not set", "CONFIG_CRYPTO_SHA1_SSSE3": "not set", "CONFIG_CRYPTO_SHA256_SSSE3": "not set", "CONFIG_CRYPTO_SHA512_SSSE3": "not set", "CONFIG_CRYPTO_SM3_AVX_X86_64": "not set", "CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL": "not set", "CONFIG_CRYPTO_CRC32C_INTEL": "not set", "CONFIG_CRYPTO_CRC32_PCLMUL": "not set", "CONFIG_CRYPTO_CRCT10DIF_PCLMUL": "not set", "CONFIG_CRYPTO_HW": "y", "CONFIG_CRYPTO_DEV_PADLOCK": "not set", "CONFIG_CRYPTO_DEV_ATMEL_ECC": "not set", "CONFIG_CRYPTO_DEV_ATMEL_SHA204A": "not set", "CONFIG_CRYPTO_DEV_CCP": "not set", "CONFIG_CRYPTO_DEV_NITROX_CNN55XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCC": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_C62X": "not set", "CONFIG_CRYPTO_DEV_QAT_4XXX": "not set", "CONFIG_CRYPTO_DEV_QAT_420XX": "not set", "CONFIG_CRYPTO_DEV_QAT_DH895xCCVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C3XXXVF": "not set", "CONFIG_CRYPTO_DEV_QAT_C62XVF": "not set", "CONFIG_CRYPTO_DEV_VIRTIO": "y", "CONFIG_CRYPTO_DEV_SAFEXCEL": "not set", "CONFIG_CRYPTO_DEV_AMLOGIC_GXL": "not set", "CONFIG_ASYMMETRIC_KEY_TYPE": "y", "CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE": "y", "CONFIG_X509_CERTIFICATE_PARSER": "y", "CONFIG_PKCS8_PRIVATE_KEY_PARSER": "not set", "CONFIG_PKCS7_MESSAGE_PARSER": "y", "CONFIG_PKCS7_TEST_KEY": "not set", "CONFIG_SIGNED_PE_FILE_VERIFICATION": "not set", "CONFIG_FIPS_SIGNATURE_SELFTEST": "not set", "CONFIG_SYSTEM_TRUSTED_KEYRING": "y", "CONFIG_SYSTEM_TRUSTED_KEYS": "\\"\\"", "CONFIG_SYSTEM_EXTRA_CERTIFICATE": "not set", "CONFIG_SECONDARY_TRUSTED_KEYRING": "not set", "CONFIG_SYSTEM_BLACKLIST_KEYRING": "not set", "CONFIG_BINARY_PRINTF": "y", "CONFIG_RAID6_PQ": "y", "CONFIG_RAID6_PQ_BENCHMARK": "y", "CONFIG_PACKING": "not set", "CONFIG_BITREVERSE": "y", "CONFIG_GENERIC_STRNCPY_FROM_USER": "y", "CONFIG_GENERIC_STRNLEN_USER": "y", "CONFIG_GENERIC_NET_UTILS": "y", "CONFIG_CORDIC": "m", "CONFIG_PRIME_NUMBERS": "not set", "CONFIG_RATIONAL": "y", "CONFIG_GENERIC_IOMAP": "y", "CONFIG_ARCH_USE_CMPXCHG_LOCKREF": "y", "CONFIG_ARCH_HAS_FAST_MULTIPLIER": "y", "CONFIG_ARCH_USE_SYM_ANNOTATIONS": "y", "CONFIG_CRYPTO_LIB_UTILS": "y", "CONFIG_CRYPTO_LIB_AES": "y", "CONFIG_CRYPTO_LIB_ARC4": "m", "CONFIG_CRYPTO_LIB_GF128MUL": "y", "CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC": "y", "CONFIG_CRYPTO_LIB_CHACHA": "not set", "CONFIG_CRYPTO_LIB_CURVE25519": "not set", "CONFIG_CRYPTO_LIB_DES": "y", "CONFIG_CRYPTO_LIB_POLY1305_RSIZE": "11", "CONFIG_CRYPTO_LIB_POLY1305": "not set", "CONFIG_CRYPTO_LIB_CHACHA20POLY1305": "not set", "CONFIG_CRYPTO_LIB_SHA1": "y", "CONFIG_CRYPTO_LIB_SHA256": "y", "CONFIG_CRC_CCITT": "m", "CONFIG_CRC16": "y", "CONFIG_CRC_T10DIF": "m", "CONFIG_CRC64_ROCKSOFT": "not set", "CONFIG_CRC_ITU_T": "not set", "CONFIG_CRC32": "y", "CONFIG_CRC32_SELFTEST": "not set", "CONFIG_CRC32_SLICEBY8": "y", "CONFIG_CRC32_SLICEBY4": "not set", "CONFIG_CRC32_SARWATE": "not set", "CONFIG_CRC32_BIT": "not set", "CONFIG_CRC64": "not set", "CONFIG_CRC4": "not set", "CONFIG_CRC7": "not set", "CONFIG_LIBCRC32C": "y", "CONFIG_CRC8": "m", "CONFIG_XXHASH": "y", "CONFIG_RANDOM32_SELFTEST": "not set", "CONFIG_ZLIB_INFLATE": "y", "CONFIG_ZLIB_DEFLATE": "y", "CONFIG_LZO_COMPRESS": "y", "CONFIG_LZO_DECOMPRESS": "y", "CONFIG_LZ4_DECOMPRESS": "y", "CONFIG_ZSTD_COMMON": "y", "CONFIG_ZSTD_COMPRESS": "y", "CONFIG_ZSTD_DECOMPRESS": "y", "CONFIG_XZ_DEC": "y", "CONFIG_XZ_DEC_X86": "y", "CONFIG_XZ_DEC_POWERPC": "y", "CONFIG_XZ_DEC_ARM": "y", "CONFIG_XZ_DEC_ARMTHUMB": "y", "CONFIG_XZ_DEC_ARM64": "y", "CONFIG_XZ_DEC_SPARC": "y", "CONFIG_XZ_DEC_RISCV": "y", "CONFIG_XZ_DEC_MICROLZMA": "not set", "CONFIG_XZ_DEC_BCJ": "y", "CONFIG_XZ_DEC_TEST": "not set", "CONFIG_DECOMPRESS_GZIP": "y", "CONFIG_DECOMPRESS_BZIP2": "y", "CONFIG_DECOMPRESS_LZMA": "y", "CONFIG_DECOMPRESS_XZ": "y", "CONFIG_DECOMPRESS_LZO": "y", "CONFIG_DECOMPRESS_LZ4": "y", "CONFIG_DECOMPRESS_ZSTD": "y", "CONFIG_GENERIC_ALLOCATOR": "y", "CONFIG_TEXTSEARCH": "y", "CONFIG_TEXTSEARCH_KMP": "m", "CONFIG_TEXTSEARCH_BM": "m", "CONFIG_TEXTSEARCH_FSM": "m", "CONFIG_INTERVAL_TREE": "y", "CONFIG_XARRAY_MULTI": "y", "CONFIG_ASSOCIATIVE_ARRAY": "y", "CONFIG_HAS_IOMEM": "y", "CONFIG_HAS_IOPORT": "y", "CONFIG_HAS_IOPORT_MAP": "y", "CONFIG_HAS_DMA": "y", "CONFIG_DMA_OPS_HELPERS": "y", "CONFIG_NEED_SG_DMA_FLAGS": "y", "CONFIG_NEED_SG_DMA_LENGTH": "y", "CONFIG_NEED_DMA_MAP_STATE": "y", "CONFIG_ARCH_DMA_ADDR_T_64BIT": "y", "CONFIG_SWIOTLB": "y", "CONFIG_SWIOTLB_DYNAMIC": "not set", "CONFIG_DMA_NEED_SYNC": "y", "CONFIG_DMA_API_DEBUG": "not set", "CONFIG_DMA_MAP_BENCHMARK": "not set", "CONFIG_SGL_ALLOC": "y", "CONFIG_CHECK_SIGNATURE": "y", "CONFIG_CPU_RMAP": "y", "CONFIG_DQL": "y", "CONFIG_GLOB": "y", "CONFIG_GLOB_SELFTEST": "not set", "CONFIG_NLATTR": "y", "CONFIG_CLZ_TAB": "y", "CONFIG_IRQ_POLL": "not set", "CONFIG_MPILIB": "y", "CONFIG_DIMLIB": "y", "CONFIG_OID_REGISTRY": "y", "CONFIG_UCS2_STRING": "y", "CONFIG_HAVE_GENERIC_VDSO": "y", "CONFIG_GENERIC_GETTIMEOFDAY": "y", "CONFIG_GENERIC_VDSO_TIME_NS": "y", "CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT": "y", "CONFIG_VDSO_GETRANDOM": "y", "CONFIG_FONT_SUPPORT": "y", "CONFIG_FONTS": "not set", "CONFIG_FONT_8x8": "y", "CONFIG_FONT_8x16": "y", "CONFIG_SG_POOL": "y", "CONFIG_ARCH_HAS_PMEM_API": "y", "CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION": "y", "CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE": "y", "CONFIG_ARCH_HAS_COPY_MC": "y", "CONFIG_ARCH_STACKWALK": "y", "CONFIG_STACKDEPOT": "y", "CONFIG_STACKDEPOT_MAX_FRAMES": "64", "CONFIG_SBITMAP": "y", "CONFIG_LWQ_TEST": "not set", "CONFIG_FIRMWARE_TABLE": "y", "CONFIG_PRINTK_TIME": "y", "CONFIG_PRINTK_CALLER": "not set", "CONFIG_STACKTRACE_BUILD_ID": "not set", "CONFIG_CONSOLE_LOGLEVEL_DEFAULT": "7", "CONFIG_CONSOLE_LOGLEVEL_QUIET": "4", "CONFIG_MESSAGE_LOGLEVEL_DEFAULT": "4", "CONFIG_BOOT_PRINTK_DELAY": "not set", "CONFIG_DYNAMIC_DEBUG": "not set", "CONFIG_DYNAMIC_DEBUG_CORE": "not set", "CONFIG_SYMBOLIC_ERRNAME": "y", "CONFIG_DEBUG_BUGVERBOSE": "y", "CONFIG_DEBUG_KERNEL": "y", "CONFIG_DEBUG_MISC": "y", "CONFIG_DEBUG_INFO": "y", "CONFIG_AS_HAS_NON_CONST_ULEB128": "y", "CONFIG_DEBUG_INFO_NONE": "not set", "CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT": "y", "CONFIG_DEBUG_INFO_DWARF4": "not set", "CONFIG_DEBUG_INFO_DWARF5": "not set", "CONFIG_DEBUG_INFO_REDUCED": "not set", "CONFIG_DEBUG_INFO_COMPRESSED_NONE": "y", "CONFIG_DEBUG_INFO_COMPRESSED_ZLIB": "not set", "CONFIG_DEBUG_INFO_SPLIT": "not set", "CONFIG_GDB_SCRIPTS": "not set", "CONFIG_FRAME_WARN": "2048", "CONFIG_STRIP_ASM_SYMS": "not set", "CONFIG_READABLE_ASM": "not set", "CONFIG_HEADERS_INSTALL": "not set", "CONFIG_DEBUG_SECTION_MISMATCH": "not set", "CONFIG_SECTION_MISMATCH_WARN_ONLY": "y", "CONFIG_ARCH_WANT_FRAME_POINTERS": "y", "CONFIG_FRAME_POINTER": "y", "CONFIG_OBJTOOL": "y", "CONFIG_STACK_VALIDATION": "not set", "CONFIG_DEBUG_FORCE_WEAK_PER_CPU": "not set", "CONFIG_MAGIC_SYSRQ": "y", "CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE": "0x1", "CONFIG_MAGIC_SYSRQ_SERIAL": "y", "CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE": "\\"\\"", "CONFIG_DEBUG_FS": "y", "CONFIG_DEBUG_FS_ALLOW_ALL": "y", "CONFIG_DEBUG_FS_DISALLOW_MOUNT": "not set", "CONFIG_DEBUG_FS_ALLOW_NONE": "not set", "CONFIG_HAVE_ARCH_KGDB": "y", "CONFIG_KGDB": "y", "CONFIG_KGDB_HONOUR_BLOCKLIST": "y", "CONFIG_KGDB_SERIAL_CONSOLE": "y", "CONFIG_KGDB_TESTS": "not set", "CONFIG_KGDB_LOW_LEVEL_TRAP": "y", "CONFIG_KGDB_KDB": "y", "CONFIG_KDB_DEFAULT_ENABLE": "0x1", "CONFIG_KDB_KEYBOARD": "y", "CONFIG_KDB_CONTINUE_CATASTROPHIC": "0", "CONFIG_ARCH_HAS_EARLY_DEBUG": "y", "CONFIG_ARCH_HAS_UBSAN": "y", "CONFIG_UBSAN": "not set", "CONFIG_HAVE_ARCH_KCSAN": "y", "CONFIG_HAVE_KCSAN_COMPILER": "y", "CONFIG_KCSAN": "not set", "CONFIG_NET_DEV_REFCNT_TRACKER": "not set", "CONFIG_NET_NS_REFCNT_TRACKER": "not set", "CONFIG_DEBUG_NET": "not set", "CONFIG_PAGE_EXTENSION": "not set", "CONFIG_DEBUG_PAGEALLOC": "not set", "CONFIG_SLUB_DEBUG": "y", "CONFIG_SLUB_DEBUG_ON": "not set", "CONFIG_PAGE_OWNER": "not set", "CONFIG_PAGE_TABLE_CHECK": "not set", "CONFIG_PAGE_POISONING": "not set", "CONFIG_DEBUG_PAGE_REF": "not set", "CONFIG_DEBUG_RODATA_TEST": "not set", "CONFIG_ARCH_HAS_DEBUG_WX": "y", "CONFIG_DEBUG_WX": "not set", "CONFIG_GENERIC_PTDUMP": "y", "CONFIG_PTDUMP_DEBUGFS": "not set", "CONFIG_HAVE_DEBUG_KMEMLEAK": "y", "CONFIG_DEBUG_KMEMLEAK": "not set", "CONFIG_PER_VMA_LOCK_STATS": "not set", "CONFIG_DEBUG_OBJECTS": "not set", "CONFIG_SHRINKER_DEBUG": "not set", "CONFIG_DEBUG_STACK_USAGE": "not set", "CONFIG_SCHED_STACK_END_CHECK": "not set", "CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE": "y", "CONFIG_DEBUG_VM": "not set", "CONFIG_DEBUG_VM_PGTABLE": "not set", "CONFIG_ARCH_HAS_DEBUG_VIRTUAL": "y", "CONFIG_DEBUG_VIRTUAL": "not set", "CONFIG_DEBUG_MEMORY_INIT": "y", "CONFIG_DEBUG_PER_CPU_MAPS": "not set", "CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP": "y", "CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP": "not set", "CONFIG_MEM_ALLOC_PROFILING": "not set", "CONFIG_HAVE_ARCH_KASAN": "y", "CONFIG_HAVE_ARCH_KASAN_VMALLOC": "y", "CONFIG_CC_HAS_KASAN_GENERIC": "y", "CONFIG_CC_HAS_KASAN_SW_TAGS": "y", "CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS": "y", "CONFIG_KASAN": "not set", "CONFIG_HAVE_ARCH_KFENCE": "y", "CONFIG_KFENCE": "y", "CONFIG_KFENCE_SAMPLE_INTERVAL": "100", "CONFIG_KFENCE_NUM_OBJECTS": "255", "CONFIG_KFENCE_DEFERRABLE": "not set", "CONFIG_KFENCE_STRESS_TEST_FAULTS": "0", "CONFIG_HAVE_ARCH_KMSAN": "y", "CONFIG_DEBUG_SHIRQ": "not set", "CONFIG_PANIC_ON_OOPS": "not set", "CONFIG_PANIC_ON_OOPS_VALUE": "0", "CONFIG_PANIC_TIMEOUT": "0", "CONFIG_SOFTLOCKUP_DETECTOR": "not set", "CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY": "y", "CONFIG_HARDLOCKUP_DETECTOR": "not set", "CONFIG_HARDLOCKUP_CHECK_TIMESTAMP": "y", "CONFIG_DETECT_HUNG_TASK": "not set", "CONFIG_WQ_WATCHDOG": "not set", "CONFIG_WQ_CPU_INTENSIVE_REPORT": "not set", "CONFIG_TEST_LOCKUP": "not set", "CONFIG_SCHED_DEBUG": "y", "CONFIG_SCHED_INFO": "y", "CONFIG_SCHEDSTATS": "not set", "CONFIG_DEBUG_PREEMPT": "not set", "CONFIG_LOCK_DEBUGGING_SUPPORT": "y", "CONFIG_PROVE_LOCKING": "not set", "CONFIG_LOCK_STAT": "not set", "CONFIG_DEBUG_RT_MUTEXES": "not set", "CONFIG_DEBUG_SPINLOCK": "not set", "CONFIG_DEBUG_MUTEXES": "not set", "CONFIG_DEBUG_WW_MUTEX_SLOWPATH": "not set", "CONFIG_DEBUG_RWSEMS": "not set", "CONFIG_DEBUG_LOCK_ALLOC": "not set", "CONFIG_DEBUG_ATOMIC_SLEEP": "not set", "CONFIG_DEBUG_LOCKING_API_SELFTESTS": "not set", "CONFIG_LOCK_TORTURE_TEST": "not set", "CONFIG_WW_MUTEX_SELFTEST": "not set", "CONFIG_SCF_TORTURE_TEST": "not set", "CONFIG_CSD_LOCK_WAIT_DEBUG": "not set", "CONFIG_NMI_CHECK_CPU": "not set", "CONFIG_DEBUG_IRQFLAGS": "not set", "CONFIG_STACKTRACE": "y", "CONFIG_WARN_ALL_UNSEEDED_RANDOM": "not set", "CONFIG_DEBUG_KOBJECT": "not set", "CONFIG_DEBUG_LIST": "not set", "CONFIG_DEBUG_PLIST": "not set", "CONFIG_DEBUG_SG": "not set", "CONFIG_DEBUG_NOTIFIERS": "not set", "CONFIG_DEBUG_MAPLE_TREE": "not set", "CONFIG_RCU_SCALE_TEST": "not set", "CONFIG_RCU_TORTURE_TEST": "not set", "CONFIG_RCU_REF_SCALE_TEST": "not set", "CONFIG_RCU_CPU_STALL_TIMEOUT": "21", "CONFIG_RCU_EXP_CPU_STALL_TIMEOUT": "0", "CONFIG_RCU_CPU_STALL_CPUTIME": "not set", "CONFIG_RCU_TRACE": "y", "CONFIG_RCU_EQS_DEBUG": "not set", "CONFIG_DEBUG_WQ_FORCE_RR_CPU": "not set", "CONFIG_CPU_HOTPLUG_STATE_CONTROL": "not set", "CONFIG_LATENCYTOP": "not set", "CONFIG_DEBUG_CGROUP_REF": "not set", "CONFIG_USER_STACKTRACE_SUPPORT": "y", "CONFIG_NOP_TRACER": "y", "CONFIG_HAVE_RETHOOK": "y", "CONFIG_RETHOOK": "y", "CONFIG_HAVE_FUNCTION_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_TRACER": "y", "CONFIG_HAVE_FUNCTION_GRAPH_RETVAL": "y", "CONFIG_HAVE_DYNAMIC_FTRACE": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE": "y", "CONFIG_HAVE_FTRACE_MCOUNT_RECORD": "y", "CONFIG_HAVE_SYSCALL_TRACEPOINTS": "y", "CONFIG_HAVE_FENTRY": "y", "CONFIG_HAVE_OBJTOOL_MCOUNT": "y", "CONFIG_HAVE_OBJTOOL_NOP_MCOUNT": "y", "CONFIG_HAVE_C_RECORDMCOUNT": "y", "CONFIG_HAVE_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_BUILDTIME_MCOUNT_SORT": "y", "CONFIG_TRACE_CLOCK": "y", "CONFIG_RING_BUFFER": "y", "CONFIG_EVENT_TRACING": "y", "CONFIG_CONTEXT_SWITCH_TRACER": "y", "CONFIG_TRACING": "y", "CONFIG_GENERIC_TRACER": "y", "CONFIG_TRACING_SUPPORT": "y", "CONFIG_FTRACE": "y", "CONFIG_BOOTTIME_TRACING": "not set", "CONFIG_FUNCTION_TRACER": "y", "CONFIG_FUNCTION_GRAPH_TRACER": "y", "CONFIG_FUNCTION_GRAPH_RETVAL": "not set", "CONFIG_DYNAMIC_FTRACE": "y", "CONFIG_DYNAMIC_FTRACE_WITH_REGS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS": "y", "CONFIG_DYNAMIC_FTRACE_WITH_ARGS": "y", "CONFIG_FPROBE": "not set", "CONFIG_FUNCTION_PROFILER": "not set", "CONFIG_STACK_TRACER": "not set", "CONFIG_IRQSOFF_TRACER": "not set", "CONFIG_PREEMPT_TRACER": "not set", "CONFIG_SCHED_TRACER": "not set", "CONFIG_HWLAT_TRACER": "not set", "CONFIG_OSNOISE_TRACER": "not set", "CONFIG_TIMERLAT_TRACER": "not set", "CONFIG_MMIOTRACE": "not set", "CONFIG_FTRACE_SYSCALLS": "y", "CONFIG_TRACER_SNAPSHOT": "not set", "CONFIG_BRANCH_PROFILE_NONE": "y", "CONFIG_PROFILE_ANNOTATED_BRANCHES": "not set", "CONFIG_PROFILE_ALL_BRANCHES": "not set", "CONFIG_BLK_DEV_IO_TRACE": "y", "CONFIG_KPROBE_EVENTS": "y", "CONFIG_KPROBE_EVENTS_ON_NOTRACE": "not set", "CONFIG_UPROBE_EVENTS": "y", "CONFIG_BPF_EVENTS": "y", "CONFIG_DYNAMIC_EVENTS": "y", "CONFIG_PROBE_EVENTS": "y", "CONFIG_FTRACE_MCOUNT_RECORD": "y", "CONFIG_FTRACE_MCOUNT_USE_CC": "y", "CONFIG_SYNTH_EVENTS": "not set", "CONFIG_USER_EVENTS": "not set", "CONFIG_HIST_TRIGGERS": "not set", "CONFIG_TRACE_EVENT_INJECT": "not set", "CONFIG_TRACEPOINT_BENCHMARK": "not set", "CONFIG_RING_BUFFER_BENCHMARK": "not set", "CONFIG_TRACE_EVAL_MAP_FILE": "not set", "CONFIG_FTRACE_RECORD_RECURSION": "not set", "CONFIG_FTRACE_VALIDATE_RCU_IS_WATCHING": "not set", "CONFIG_FTRACE_STARTUP_TEST": "not set", "CONFIG_FTRACE_SORT_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_STARTUP_TEST": "not set", "CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS": "not set", "CONFIG_PREEMPTIRQ_DELAY_TEST": "not set", "CONFIG_KPROBE_EVENT_GEN_TEST": "not set", "CONFIG_RV": "not set", "CONFIG_PROVIDE_OHCI1394_DMA_INIT": "not set", "CONFIG_SAMPLES": "y", "CONFIG_SAMPLE_TRACE_EVENTS": "m", "CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS": "not set", "CONFIG_SAMPLE_TRACE_PRINTK": "m", "CONFIG_SAMPLE_FTRACE_DIRECT": "not set", "CONFIG_SAMPLE_FTRACE_DIRECT_MULTI": "not set", "CONFIG_SAMPLE_FTRACE_OPS": "not set", "CONFIG_SAMPLE_TRACE_ARRAY": "not set", "CONFIG_SAMPLE_KOBJECT": "m", "CONFIG_SAMPLE_KPROBES": "m", "CONFIG_SAMPLE_KRETPROBES": "m", "CONFIG_SAMPLE_HW_BREAKPOINT": "m", "CONFIG_SAMPLE_KFIFO": "m", "CONFIG_SAMPLE_KDB": "not set", "CONFIG_SAMPLE_CONFIGFS": "m", "CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB": "not set", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT": "y", "CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI": "y", "CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED": "y", "CONFIG_STRICT_DEVMEM": "y", "CONFIG_IO_STRICT_DEVMEM": "not set", "CONFIG_X86_VERBOSE_BOOTUP": "y", "CONFIG_EARLY_PRINTK": "y", "CONFIG_EARLY_PRINTK_DBGP": "not set", "CONFIG_EARLY_PRINTK_USB_XDBC": "not set", "CONFIG_EFI_PGT_DUMP": "not set", "CONFIG_DEBUG_TLBFLUSH": "not set", "CONFIG_HAVE_MMIOTRACE_SUPPORT": "y", "CONFIG_X86_DECODER_SELFTEST": "not set", "CONFIG_IO_DELAY_0X80": "y", "CONFIG_IO_DELAY_0XED": "not set", "CONFIG_IO_DELAY_UDELAY": "not set", "CONFIG_IO_DELAY_NONE": "not set", "CONFIG_DEBUG_BOOT_PARAMS": "not set", "CONFIG_CPA_DEBUG": "not set", "CONFIG_DEBUG_ENTRY": "not set", "CONFIG_DEBUG_NMI_SELFTEST": "not set", "CONFIG_X86_DEBUG_FPU": "y", "CONFIG_PUNIT_ATOM_DEBUG": "not set", "CONFIG_UNWINDER_ORC": "not set", "CONFIG_UNWINDER_FRAME_POINTER": "y", "CONFIG_KUNIT": "not set", "CONFIG_NOTIFIER_ERROR_INJECTION": "not set", "CONFIG_FUNCTION_ERROR_INJECTION": "not set", "CONFIG_FAULT_INJECTION": "y", "CONFIG_FAILSLAB": "y", "CONFIG_FAIL_PAGE_ALLOC": "y", "CONFIG_FAULT_INJECTION_USERCOPY": "not set", "CONFIG_FAIL_MAKE_REQUEST": "y", "CONFIG_FAIL_IO_TIMEOUT": "y", "CONFIG_FAIL_FUTEX": "y", "CONFIG_FAULT_INJECTION_DEBUG_FS": "y", "CONFIG_FAIL_MMC_REQUEST": "not set", "CONFIG_FAULT_INJECTION_CONFIGFS": "not set", "CONFIG_FAULT_INJECTION_STACKTRACE_FILTER": "not set", "CONFIG_ARCH_HAS_KCOV": "y", "CONFIG_CC_HAS_SANCOV_TRACE_PC": "y", "CONFIG_KCOV": "not set", "CONFIG_RUNTIME_TESTING_MENU": "y", "CONFIG_TEST_DHRY": "not set", "CONFIG_LKDTM": "not set", "CONFIG_TEST_MIN_HEAP": "not set", "CONFIG_TEST_DIV64": "not set", "CONFIG_TEST_MULDIV64": "not set", "CONFIG_BACKTRACE_SELF_TEST": "not set", "CONFIG_TEST_REF_TRACKER": "not set", "CONFIG_RBTREE_TEST": "not set", "CONFIG_REED_SOLOMON_TEST": "not set", "CONFIG_INTERVAL_TREE_TEST": "not set", "CONFIG_PERCPU_TEST": "not set", "CONFIG_ATOMIC64_SELFTEST": "not set", "CONFIG_ASYNC_RAID6_TEST": "not set", "CONFIG_TEST_HEXDUMP": "not set", "CONFIG_TEST_KSTRTOX": "not set", "CONFIG_TEST_PRINTF": "not set", "CONFIG_TEST_SCANF": "not set", "CONFIG_TEST_BITMAP": "not set", "CONFIG_TEST_UUID": "not set", "CONFIG_TEST_XARRAY": "not set", "CONFIG_TEST_MAPLE_TREE": "not set", "CONFIG_TEST_RHASHTABLE": "not set", "CONFIG_TEST_IDA": "not set", "CONFIG_TEST_LKM": "not set", "CONFIG_TEST_BITOPS": "not set", "CONFIG_TEST_VMALLOC": "not set", "CONFIG_TEST_BPF": "not set", "CONFIG_TEST_BLACKHOLE_DEV": "not set", "CONFIG_FIND_BIT_BENCHMARK": "not set", "CONFIG_TEST_FIRMWARE": "not set", "CONFIG_TEST_SYSCTL": "not set", "CONFIG_TEST_UDELAY": "not set", "CONFIG_TEST_STATIC_KEYS": "not set", "CONFIG_TEST_KMOD": "not set", "CONFIG_TEST_MEMCAT_P": "not set", "CONFIG_TEST_MEMINIT": "not set", "CONFIG_TEST_FREE_PAGES": "not set", "CONFIG_TEST_FPU": "not set", "CONFIG_TEST_CLOCKSOURCE_WATCHDOG": "not set", "CONFIG_TEST_OBJPOOL": "not set", "CONFIG_ARCH_USE_MEMTEST": "y", "CONFIG_MEMTEST": "not set"} {"id": "qemux86-64", "class": "system", "claimed": true, "handle": "DMI:0100", "description": "Computer", "product": "Standard PC (Q35 + ICH9, 2009)", "vendor": "QEMU", "version": "pc-q35-9.2", "width": 64, "configuration": {"boot": "normal"}, "capabilities": {"smbios-2.8": "SMBIOS version 2.8", "dmi-2.8": "DMI version 2.8", "smp": "Symmetric Multi-Processing", "vsyscall32": "32-bit processes"}, "children": [{"id": "core", "class": "bus", "claimed": true, "description": "Motherboard", "physid": "0", "children": [{"id": "firmware", "class": "memory", "claimed": true, "description": "BIOS", "vendor": "SeaBIOS", "physid": "0", "version": "rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org", "date": "04/01/2014", "units": "bytes", "size": 98304}, {"id": "cpu", "class": "processor", "claimed": true, "handle": "DMI:0400", "description": "CPU", "product": "Intel Xeon E3-12xx v2 (Ivy Bridge)", "vendor": "Intel Corp.", "physid": "400", "businfo": "cpu@0", "version": "6.58.9", "slot": "CPU 0", "units": "Hz", "size": 2000000000, "capacity": 2000000000, "width": 64, "configuration": {"cores": "4", "enabledcores": "4", "microcode": "1", "threads": "4"}, "capabilities": {"fpu": "mathematical co-processor", "fpu_exception": "FPU exceptions reporting", "wp": true, "de": "debugging extensions", "pse": "page size extensions", "tsc": "time stamp counter", "msr": "model-specific registers", "pae": "4GB+ memory addressing (Physical Address Extension)", "mce": "machine check exceptions", "cx8": "compare and exchange 8-byte", "apic": "on-chip advanced programmable interrupt controller (APIC)", "sep": "fast system calls", "mtrr": "memory type range registers", "pge": "page global enable", "mca": "machine check architecture", "cmov": "conditional move instruction", "pat": "page attribute table", "pse36": "36-bit page size extensions", "clflush": true, "mmx": "multimedia extensions (MMX)", "fxsr": "fast floating point save/restore", "sse": "streaming SIMD extensions (SSE)", "sse2": "streaming SIMD extensions (SSE2)", "ht": "HyperThreading", "syscall": "fast system calls", "nx": "no-execute bit (NX)", "rdtscp": true, "x86-64": "64bits extensions (x86-64)", "constant_tsc": true, "rep_good": true, "nopl": true, "xtopology": true, "cpuid": true, "pni": true, "pclmulqdq": true, "ssse3": true, "cx16": true, "sse4_1": true, "sse4_2": true, "x2apic": true, "popcnt": true, "aes": true, "xsave": true, "avx": true, "f16c": true, "rdrand": true, "hypervisor": true, "lahf_lm": true, "pti": true, "fsgsbase": true, "smep": true, "erms": true, "xsaveopt": true, "arat": true}}, {"id": "memory", "class": "memory", "claimed": true, "handle": "DMI:1000", "description": "System Memory", "physid": "1000", "units": "bytes", "size": 3221225472, "capacity": 3221225472, "configuration": {"errordetection": "multi-bit-ecc"}, "capabilities": {"ecc": "Multi-bit error-correcting code (ECC)"}, "children": [{"id": "bank", "class": "memory", "claimed": true, "handle": "DMI:1100", "description": "DIMM RAM", "vendor": "QEMU", "physid": "0", "slot": "DIMM 0", "units": "bytes", "size": 3221225472}]}, {"id": "pci", "class": "bridge", "claimed": true, "handle": "PCIBUS:0000:00", "description": "Host bridge", "product": "82G33/G31/P35/P31 Express DRAM Controller", "vendor": "Intel Corporation", "physid": "100", "businfo": "pci@0000:00:00.0", "version": "00", "width": 32, "clock": 33000000, "children": [{"id": "display", "class": "display", "claimed": true, "handle": "PCI:0000:00:01.0", "description": "VGA compatible controller", "product": "bochs-drmdrmfb", "physid": "1", "businfo": "pci@0000:00:01.0", "logicalname": "/dev/fb0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"depth": "32", "driver": "bochs-drm", "latency": "0", "resolution": "1280,800"}, "capabilities": {"vga_controller": true, "rom": "extension ROM", "fb": "framebuffer"}}, {"id": "network", "class": "network", "claimed": true, "handle": "PCI:0000:00:02.0", "description": "Ethernet controller", "product": "Virtio network device", "vendor": "Red Hat, Inc.", "physid": "2", "businfo": "pci@0000:00:02.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing", "rom": "extension ROM"}, "children": [{"id": "virtio0", "class": "network", "claimed": true, "description": "Ethernet interface", "physid": "0", "businfo": "virtio@0", "logicalname": "eth0", "serial": "52:54:00:12:35:02", "configuration": {"autonegotiation": "off", "broadcast": "yes", "driver": "virtio_net", "driverversion": "1.0.0", "ip": "10.0.2.15", "link": "yes", "multicast": "yes"}, "capabilities": {"ethernet": true, "physical": "Physical interface"}}]}, {"id": "generic", "class": "generic", "claimed": true, "handle": "PCI:0000:00:03.0", "description": "Unclassified device", "product": "Virtio RNG", "vendor": "Red Hat, Inc.", "physid": "3", "businfo": "pci@0000:00:03.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio1", "class": "generic", "description": "Virtual I/O device", "physid": "0", "businfo": "virtio@1", "configuration": {"driver": "virtio_rng"}}]}, {"id": "scsi", "class": "storage", "claimed": true, "handle": "PCI:0000:00:04.0", "description": "SCSI storage controller", "product": "Virtio block device", "vendor": "Red Hat, Inc.", "physid": "4", "businfo": "pci@0000:00:04.0", "version": "00", "width": 64, "clock": 33000000, "configuration": {"driver": "virtio-pci", "latency": "0"}, "capabilities": {"scsi": true, "msix": "MSI-X", "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}, "children": [{"id": "virtio2", "class": "volume", "claimed": true, "description": "EXT4 volume", "vendor": "Linux", "physid": "0", "businfo": "virtio@2", "logicalname": "/dev/vda", "version": "1.0", "serial": "b4b8a360-85de-485d-825e-62aba5b67718", "size": 10867609600, "configuration": {"created": "2011-04-05 23:00:00", "driver": "virtio_blk", "filesystem": "ext4", "lastmountpoint": "/", "logicalsectorsize": "512", "modified": "2026-04-19 19:17:07", "mounted": "2026-04-19 19:17:07", "sectorsize": "512", "state": "clean"}, "capabilities": {"journaled": true, "extended_attributes": "Extended Attributes", "large_files": "4GB+ files", "huge_files": "16TB+ files", "dir_nlink": "directories with 65000+ subdirs", "recover": "needs recovery", "64bit": "64bit filesystem", "extents": "extent-based allocation", "ext4": true, "ext2": "EXT2/EXT3 volume", "initialized": "initialized volume"}}]}, {"id": "usb:0", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.0", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d", "businfo": "pci@0000:00:1d.0", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:1:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@1", "logicalname": "usb1", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:1", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.1", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #2", "vendor": "Intel Corporation", "physid": "1d.1", "businfo": "pci@0000:00:1d.1", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:3:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@3", "logicalname": "usb3", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:2", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.2", "description": "USB controller", "product": "82801I (ICH9 Family) USB UHCI Controller #3", "vendor": "Intel Corporation", "physid": "1d.2", "businfo": "pci@0000:00:1d.2", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "uhci_hcd", "latency": "0"}, "capabilities": {"uhci": "Universal Host Controller Interface (USB1)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:4:1", "product": "UHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard uhci_hcd", "physid": "1", "businfo": "usb@4", "logicalname": "usb4", "version": "6.12", "configuration": {"driver": "hub", "slots": "2", "speed": "12Mbit/s"}, "capabilities": {"usb-1.10": "USB 1.1"}}]}, {"id": "usb:3", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1d.7", "description": "USB controller", "product": "82801I (ICH9 Family) USB2 EHCI Controller #1", "vendor": "Intel Corporation", "physid": "1d.7", "businfo": "pci@0000:00:1d.7", "version": "03", "width": 32, "clock": 33000000, "configuration": {"driver": "ehci-pci", "latency": "0"}, "capabilities": {"ehci": "Enhanced Host Controller Interface (USB2)", "bus_master": "bus mastering"}, "children": [{"id": "usbhost", "class": "bus", "claimed": true, "handle": "USB:2:1", "product": "EHCI Host Controller", "vendor": "Linux 6.12.47-yocto-standard ehci_hcd", "physid": "1", "businfo": "usb@2", "logicalname": "usb2", "version": "6.12", "configuration": {"driver": "hub", "slots": "6", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0"}, "children": [{"id": "usb:0", "class": "input", "claimed": true, "handle": "USB:2:2", "description": "Human interface device", "product": "QEMU QEMU USB Tablet", "vendor": "QEMU", "physid": "1", "businfo": "usb@2:1", "logicalname": ["input1", "/dev/input/event1", "/dev/input/mouse0"], "version": "0.00", "serial": "28754-0000:00:1d.7-1", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}, {"id": "usb:1", "class": "input", "claimed": true, "handle": "USB:2:3", "description": "Keyboard", "product": "QEMU QEMU USB Keyboard", "vendor": "QEMU", "physid": "2", "businfo": "usb@2:2", "logicalname": ["input2", "/dev/input/event2", "input2::capslock", "input2::compose", "input2::kana", "input2::numlock", "input2::scrolllock"], "version": "0.00", "serial": "68284-0000:00:1d.7-2", "configuration": {"driver": "usbhid", "maxpower": "100mA", "speed": "480Mbit/s"}, "capabilities": {"usb-2.00": "USB 2.0", "usb": "USB"}}]}]}, {"id": "isa", "class": "bridge", "claimed": true, "handle": "PCI:0000:00:1f.0", "description": "ISA bridge", "product": "82801IB (ICH9) LPC Interface Controller", "vendor": "Intel Corporation", "physid": "1f", "businfo": "pci@0000:00:1f.0", "version": "02", "width": 32, "clock": 33000000, "configuration": {"latency": "0"}, "capabilities": {"isa": true}, "children": [{"id": "pnp00:00", "class": "printer", "claimed": true, "product": "Standard LPT printer port", "physid": "0", "capabilities": {"pnp": true}}, {"id": "pnp00:01", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "1", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:02", "class": "communication", "claimed": true, "product": "16550A-compatible COM port", "physid": "2", "configuration": {"driver": "serial"}, "capabilities": {"pnp": true}}, {"id": "pnp00:03", "class": "system", "claimed": true, "product": "AT Real-Time Clock", "physid": "3", "configuration": {"driver": "rtc_cmos"}, "capabilities": {"pnp": true}}, {"id": "pnp00:04", "class": "system", "claimed": true, "product": "System Board", "physid": "4", "configuration": {"driver": "system"}, "capabilities": {"pnp": true}}]}, {"id": "sata", "class": "storage", "claimed": true, "handle": "PCI:0000:00:1f.2", "description": "SATA controller", "product": "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]", "vendor": "Intel Corporation", "physid": "1f.2", "businfo": "pci@0000:00:1f.2", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "ahci", "latency": "0"}, "capabilities": {"sata": true, "msi": "Message Signalled Interrupts", "ahci_1.0": true, "bus_master": "bus mastering", "cap_list": "PCI capabilities listing"}}, {"id": "serial", "class": "bus", "claimed": true, "handle": "PCI:0000:00:1f.3", "description": "SMBus", "product": "82801I (ICH9 Family) SMBus Controller", "vendor": "Intel Corporation", "physid": "1f.3", "businfo": "pci@0000:00:1f.3", "version": "02", "width": 32, "clock": 33000000, "configuration": {"driver": "i801_smbus", "latency": "0"}}]}]}, {"id": "input", "class": "input", "claimed": true, "product": "Power Button", "physid": "1", "logicalname": ["input0", "/dev/input/event0"], "capabilities": {"platform": true}}]} +\. + +-- 3) Util run result table +COPY util_run_result (id, experiment_id, util_type, command, result, description, started_at, ended_at) FROM stdin; +1 1 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626464, "timestamp_ms": 1776626464825, "time": "Sun Apr 19 19:21:04 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10184704, "io_kbytes": 9946, "bw_bytes": 2036533, "bw": 1988, "iops": 3977.604479, "runtime": 5001, "total_ios": 19892, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 85600, "max": 10274701, "mean": 146591.088176, "stddev": 294087.280722, "N": 19892}, "clat_ns": {"min": 4990, "max": 5936797, "mean": 91427.784637, "stddev": 130891.563759, "N": 19892, "percentile": {"1.000000": 5408, "5.000000": 5664, "10.000000": 6240, "20.000000": 65280, "30.000000": 75264, "40.000000": 82432, "50.000000": 88576, "60.000000": 92672, "70.000000": 96768, "80.000000": 103936, "90.000000": 132096, "95.000000": 160768, "99.000000": 236544, "99.500000": 309248, "99.900000": 1925120, "99.950000": 3457024, "99.990000": 5472256}}, "lat_ns": {"min": 142870, "max": 10301891, "mean": 240528.31118, "stddev": 313140.97562, "N": 19892}, "bw_min": 860, "bw_max": 2379, "bw_agg": 98.199833, "bw_mean": 1953.25, "bw_dev": 730.713977, "bw_samples": 4, "iops_min": 1721, "iops_max": 4758, "iops_mean": 3907.0, "iops_stddev": 1461.065137, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.74, "sys_cpu": 51.72, "ctx": 19909, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.200885, "20": 0.487633, "50": 0.01, "100": 63.010255, "250": 23.446612, "500": 0.477579, "750": 0.110597, "1000": 0.030163}, "latency_ms": {"2": 0.135733, "4": 0.075407, "10": 0.020109, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 19313, "read_merges": 0, "write_merges": 2415, "read_ticks": 1, "write_ticks": 2550, "in_queue": 2550, "util": 74.688129}]} 2026-04-19 19:20:55.904219 2026-04-19 19:16:23.943354 +2 1 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626511, "timestamp_ms": 1776626511408, "time": "Sun Apr 19 19:21:51 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13039104, "io_kbytes": 12733, "bw_bytes": 2607299, "bw": 2546, "iops": 5092.381524, "runtime": 5001, "total_ios": 25467, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 71611, "max": 3896602, "mean": 92774.550163, "stddev": 33559.587384, "N": 25467}, "clat_ns": {"min": 5010, "max": 7364832, "mean": 93155.172498, "stddev": 233810.530468, "N": 25467, "percentile": {"1.000000": 46336, "5.000000": 47872, "10.000000": 49408, "20.000000": 50944, "30.000000": 52992, "40.000000": 60160, "50.000000": 67072, "60.000000": 74240, "70.000000": 79360, "80.000000": 84480, "90.000000": 111104, "95.000000": 140288, "99.000000": 659456, "99.500000": 1564672, "99.900000": 3817472, "99.950000": 4816896, "99.990000": 6520832}}, "lat_ns": {"min": 121021, "max": 7506972, "mean": 187942.868339, "stddev": 240508.940341, "N": 25467}, "bw_min": 1206, "bw_max": 2968, "bw_agg": 94.808305, "bw_mean": 2414.0, "bw_dev": 813.396172, "bw_samples": 4, "iops_min": 2413, "iops_max": 5936, "iops_mean": 4828.5, "iops_stddev": 1626.411285, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.96, "sys_cpu": 60.56, "ctx": 25350, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.121726, "20": 0.039267, "50": 14.120234, "100": 73.451918, "250": 10.947501, "500": 0.204186, "750": 0.133506, "1000": 0.10602}, "latency_ms": {"2": 0.526171, "4": 0.270939, "10": 0.078533, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24603, "write_ios": 2, "read_merges": 0, "write_merges": 1, "read_ticks": 2937, "write_ticks": 164, "in_queue": 3103, "util": 77.304821}]} 2026-04-19 19:21:06.936225 2026-04-19 19:16:23.943354 +3 1 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626535, "timestamp_ms": 1776626535980, "time": "Sun Apr 19 19:22:15 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12268032, "io_kbytes": 11980, "bw_bytes": 2453115, "bw": 2395, "iops": 4791.241752, "runtime": 5001, "total_ios": 23961, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76630, "max": 3688791, "mean": 94875.718376, "stddev": 35988.076936, "N": 23961}, "clat_ns": {"min": 5210, "max": 10403761, "mean": 102347.359042, "stddev": 248171.711253, "N": 23961, "percentile": {"1.000000": 50432, "5.000000": 52480, "10.000000": 54016, "20.000000": 57600, "30.000000": 64768, "40.000000": 71168, "50.000000": 76288, "60.000000": 80384, "70.000000": 83456, "80.000000": 90624, "90.000000": 111104, "95.000000": 138240, "99.000000": 978944, "99.500000": 1695744, "99.900000": 3555328, "99.950000": 5341184, "99.990000": 7045120}}, "lat_ns": {"min": 126160, "max": 10531192, "mean": 199178.149827, "stddev": 254925.009754, "N": 23961}, "bw_min": 1039, "bw_max": 2864, "bw_agg": 96.38423, "bw_mean": 2309.5, "bw_dev": 860.292392, "bw_samples": 4, "iops_min": 2079, "iops_max": 5728, "iops_mean": 4619.25, "iops_stddev": 1720.092512, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.02, "sys_cpu": 61.22, "ctx": 23911, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.095989, "20": 0.058428, "50": 0.584283, "100": 86.056508, "250": 11.631401, "500": 0.296315, "750": 0.112683, "1000": 0.171111}, "latency_ms": {"2": 0.663578, "4": 0.262927, "10": 0.062602, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23048, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2878, "write_ticks": 0, "in_queue": 2879, "util": 73.848651}]} 2026-04-19 19:21:53.55201 2026-04-19 19:16:23.943354 +4 1 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626546, "timestamp_ms": 1776626546161, "time": "Sun Apr 19 19:22:26 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5148672, "io_kbytes": 5028, "bw_bytes": 1029528, "bw": 1005, "iops": 2010.79784, "runtime": 5001, "total_ios": 10056, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95641, "max": 180952410, "mean": 475215.956444, "stddev": 1857666.237954, "N": 10056}, "clat_ns": {"min": 4600, "max": 2235987, "mean": 7903.572693, "stddev": 27790.198859, "N": 10056, "percentile": {"1.000000": 4704, "5.000000": 4832, "10.000000": 4896, "20.000000": 4960, "30.000000": 5024, "40.000000": 5088, "50.000000": 5152, "60.000000": 5216, "70.000000": 5408, "80.000000": 6368, "90.000000": 8512, "95.000000": 9152, "99.000000": 114176, "99.500000": 134144, "99.900000": 228352, "99.950000": 259072, "99.990000": 444416}}, "lat_ns": {"min": 181680, "max": 181011890, "mean": 486452.340394, "stddev": 1858631.826684, "N": 10056}, "bw_min": 529, "bw_max": 1206, "bw_agg": 97.274868, "bw_mean": 978.0, "bw_dev": 305.431935, "bw_samples": 4, "iops_min": 1059, "iops_max": 2413, "iops_mean": 1957.0, "iops_stddev": 610.863869, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 0.0, "sys_cpu": 68.7, "ctx": 10128, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.161496, "20": 2.317025, "50": 0.149165, "100": 0.119332, "250": 1.193317, "500": 0.049722, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 53, "write_ios": 9618, "read_merges": 0, "write_merges": 16656, "read_ticks": 23, "write_ticks": 1960, "in_queue": 2158, "util": 70.087203}]} 2026-04-19 19:22:18.110781 2026-04-19 19:16:23.943354 +5 1 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626557, "timestamp_ms": 1776626557278, "time": "Sun Apr 19 19:22:37 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 57675776, "io_kbytes": 56324, "bw_bytes": 11530542, "bw": 11260, "iops": 2815.07397, "runtime": 5002, "total_ios": 14081, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 92931, "max": 4213093, "mean": 112594.573894, "stddev": 46729.038715, "N": 14081}, "clat_ns": {"min": 6820, "max": 10675272, "mean": 229038.056885, "stddev": 343384.572738, "N": 14081, "percentile": {"1.000000": 142336, "5.000000": 150528, "10.000000": 154624, "20.000000": 162816, "30.000000": 168960, "40.000000": 175104, "50.000000": 181248, "60.000000": 187392, "70.000000": 195584, "80.000000": 222208, "90.000000": 264192, "95.000000": 305152, "99.000000": 1679360, "99.500000": 2539520, "99.900000": 5079040, "99.950000": 6324224, "99.990000": 8355840}}, "lat_ns": {"min": 226071, "max": 10810032, "mean": 343994.237554, "stddev": 350803.150179, "N": 14081}, "bw_min": 10352, "bw_max": 13516, "bw_agg": 100.0, "bw_mean": 12409.5, "bw_dev": 1453.14498, "bw_samples": 4, "iops_min": 2588, "iops_max": 3379, "iops_mean": 3102.25, "iops_stddev": 363.178904, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 20.115977, "sys_cpu": 20.115977, "ctx": 14100, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.078119, "20": 0.19885, "50": 0.0, "100": 0.0, "250": 87.238122, "500": 10.709467, "750": 0.205951, "1000": 0.142035}, "latency_ms": {"2": 0.667566, "4": 0.553938, "10": 0.19885, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 13870, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2013, "in_queue": 2013, "util": 76.236429}]} 2026-04-19 19:22:29.639751 2026-04-19 19:16:23.943354 +6 1 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626574, "timestamp_ms": 1776626574899, "time": "Sun Apr 19 19:22:54 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 102719488, "io_kbytes": 100312, "bw_bytes": 20539789, "bw": 20058, "iops": 5014.597081, "runtime": 5001, "total_ios": 25078, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76020, "max": 1239704, "mean": 93790.466465, "stddev": 26821.263182, "N": 25078}, "clat_ns": {"min": 3830, "max": 9406988, "mean": 95393.934564, "stddev": 232904.695431, "N": 25078, "percentile": {"1.000000": 47872, "5.000000": 50432, "10.000000": 51968, "20.000000": 54016, "30.000000": 57600, "40.000000": 64256, "50.000000": 72192, "60.000000": 77312, "70.000000": 82432, "80.000000": 87552, "90.000000": 101888, "95.000000": 127488, "99.000000": 700416, "99.500000": 1646592, "99.900000": 3948544, "99.950000": 4620288, "99.990000": 6127616}}, "lat_ns": {"min": 124300, "max": 9526288, "mean": 191147.071298, "stddev": 238108.615626, "N": 25078}, "bw_min": 21866, "bw_max": 23560, "bw_agg": 100.0, "bw_mean": 22848.5, "bw_dev": 710.523516, "bw_samples": 4, "iops_min": 5466, "iops_max": 5890, "iops_mean": 5712.0, "iops_stddev": 177.861369, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 10.39792, "sys_cpu": 57.368526, "ctx": 24950, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.011963, "10": 0.191403, "20": 0.0319, "50": 2.883005, "100": 85.915942, "250": 9.657867, "500": 0.207353, "750": 0.119627, "1000": 0.055826}, "latency_ms": {"2": 0.65396, "4": 0.17944, "10": 0.091714, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 25078, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3025, "write_ticks": 0, "in_queue": 3024, "util": 75.407902}]} 2026-04-19 19:22:39.437074 2026-04-19 19:16:23.943354 +7 1 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626591, "timestamp_ms": 1776626591016, "time": "Sun Apr 19 19:23:11 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 105783296, "io_kbytes": 103304, "bw_bytes": 21152428, "bw": 20656, "iops": 5164.167167, "runtime": 5001, "total_ios": 25826, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77520, "max": 3991592, "mean": 92896.137613, "stddev": 30247.647723, "N": 25826}, "clat_ns": {"min": 5080, "max": 5485976, "mean": 89348.049408, "stddev": 185633.756319, "N": 25826, "percentile": {"1.000000": 48896, "5.000000": 51968, "10.000000": 52992, "20.000000": 55552, "30.000000": 60672, "40.000000": 66048, "50.000000": 74240, "60.000000": 79360, "70.000000": 83456, "80.000000": 86528, "90.000000": 97792, "95.000000": 124416, "99.000000": 218112, "99.500000": 1302528, "99.900000": 3555328, "99.950000": 4227072, "99.990000": 5210112}}, "lat_ns": {"min": 124571, "max": 5616827, "mean": 184344.528034, "stddev": 191726.4719, "N": 25826}, "bw_min": 13710, "bw_max": 23064, "bw_agg": 97.600446, "bw_mean": 20161.5, "bw_dev": 4363.592213, "bw_samples": 4, "iops_min": 3427, "iops_max": 5766, "iops_mean": 5040.25, "iops_stddev": 1091.144468, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 9.32, "sys_cpu": 60.74, "ctx": 25705, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.13165, "20": 0.038721, "50": 1.692093, "100": 88.771006, "250": 8.460466, "500": 0.139394, "750": 0.123906, "1000": 0.054209}, "latency_ms": {"2": 0.383335, "4": 0.151011, "10": 0.054209, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 25269, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3072, "write_ticks": 0, "in_queue": 3072, "util": 81.887245}]} 2026-04-19 19:22:56.977941 2026-04-19 19:16:23.943354 +8 1 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626600, "timestamp_ms": 1776626600779, "time": "Sun Apr 19 19:23:20 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 43134976, "io_kbytes": 42124, "bw_bytes": 8625270, "bw": 8423, "iops": 2105.778844, "runtime": 5001, "total_ios": 10531, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 99441, "max": 837612, "mean": 118172.248315, "stddev": 25172.622108, "N": 10531}, "clat_ns": {"min": 5650, "max": 9215658, "mean": 341030.668882, "stddev": 416128.467866, "N": 10531, "percentile": {"1.000000": 183296, "5.000000": 199680, "10.000000": 209920, "20.000000": 226304, "30.000000": 242688, "40.000000": 264192, "50.000000": 284672, "60.000000": 301056, "70.000000": 313344, "80.000000": 337920, "90.000000": 395264, "95.000000": 460800, "99.000000": 2605056, "99.500000": 3686400, "99.900000": 5341184, "99.950000": 6193152, "99.990000": 8454144}}, "lat_ns": {"min": 270171, "max": 9381658, "mean": 461846.875795, "stddev": 423136.973982, "N": 10531}, "bw_min": 5356, "bw_max": 9938, "bw_agg": 95.534725, "bw_mean": 8047.0, "bw_dev": 2032.135494, "bw_samples": 4, "iops_min": 1339, "iops_max": 2484, "iops_mean": 2011.5, "iops_stddev": 507.781121, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 16.58, "sys_cpu": 16.6, "ctx": 10535, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.047479, "20": 0.0, "50": 0.0, "100": 0.0, "250": 33.311177, "500": 62.881018, "750": 1.481341, "1000": 0.351344}, "latency_ms": {"2": 0.626721, "4": 0.959073, "10": 0.341848, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 2, "write_ios": 10233, "read_merges": 0, "write_merges": 0, "read_ticks": 150, "write_ticks": 1591, "in_queue": 1742, "util": 81.79992}]} 2026-04-19 19:23:13.596143 2026-04-19 19:16:23.943354 +9 1 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626622, "timestamp_ms": 1776626622454, "time": "Sun Apr 19 19:23:42 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 16, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1975517184, "io_kbytes": 1929216, "bw_bytes": 128064124, "bw": 125062, "iops": 61.065733, "runtime": 15426, "total_ios": 942, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 196181, "max": 14248991155, "mean": 15553627.828025, "stddev": 464243446.546048, "N": 942}, "clat_ns": {"min": 10830, "max": 8181675, "mean": 798438.123142, "stddev": 563780.704184, "N": 942, "percentile": {"1.000000": 325632, "5.000000": 346112, "10.000000": 358400, "20.000000": 391168, "30.000000": 626688, "40.000000": 724992, "50.000000": 765952, "60.000000": 815104, "70.000000": 864256, "80.000000": 921600, "90.000000": 1073152, "95.000000": 1269760, "99.000000": 3653632, "99.500000": 4489216, "99.900000": 8159232, "99.950000": 8159232, "99.990000": 8159232}}, "lat_ns": {"min": 805232, "max": 14250109689, "mean": 16356408.521231, "stddev": 464253992.923384, "N": 942}, "bw_min": 227100, "bw_max": 1698141, "bw_agg": 100.0, "bw_mean": 962620.5, "bw_dev": 1040183.066503, "bw_samples": 2, "iops_min": 110, "iops_max": 829, "iops_mean": 469.5, "iops_stddev": 508.409776, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 15426, "usr_cpu": 0.0, "sys_cpu": 1.957734, "ctx": 1241, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.106157, "50": 0.0, "100": 0.0, "250": 0.0, "500": 27.070064, "750": 19.10828, "1000": 39.808917}, "latency_ms": {"2": 11.04034, "4": 2.123142, "10": 0.7431, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 1883, "read_merges": 0, "write_merges": 1, "read_ticks": 0, "write_ticks": 1158, "in_queue": 1158, "util": 6.858622}]} 2026-04-19 19:23:24.120832 2026-04-19 19:16:23.943354 +10 1 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626648, "timestamp_ms": 1776626648087, "time": "Sun Apr 19 19:24:08 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12868124672, "io_kbytes": 12566528, "bw_bytes": 2573110312, "bw": 2512803, "iops": 1226.954609, "runtime": 5001, "total_ios": 6136, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 189611, "max": 9449758, "mean": 579981.670143, "stddev": 364955.739935, "N": 6136}, "clat_ns": {"min": 6190, "max": 5388156, "mean": 218252.665254, "stddev": 251058.224408, "N": 6136, "percentile": {"1.000000": 129536, "5.000000": 136192, "10.000000": 142336, "20.000000": 152576, "30.000000": 162816, "40.000000": 175104, "50.000000": 183296, "60.000000": 191488, "70.000000": 203776, "80.000000": 226304, "90.000000": 272384, "95.000000": 329728, "99.000000": 880640, "99.500000": 1875968, "99.900000": 4227072, "99.950000": 4554752, "99.990000": 5406720}}, "lat_ns": {"min": 526201, "max": 9968620, "mean": 802554.118155, "stddev": 484086.608379, "N": 6136}, "bw_min": 1906829, "bw_max": 2950265, "bw_agg": 96.186329, "bw_mean": 2416973.75, "bw_dev": 540186.786996, "bw_samples": 4, "iops_min": 931, "iops_max": 1440, "iops_mean": 1180.0, "iops_stddev": 263.607031, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.28, "sys_cpu": 38.98, "ctx": 12237, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.081486, "20": 0.244459, "50": 0.032595, "100": 0.081486, "250": 86.082138, "500": 11.619948, "750": 0.749674, "1000": 0.228162}, "latency_ms": {"2": 0.440026, "4": 0.325945, "10": 0.114081, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 12138, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3298, "write_ticks": 0, "in_queue": 3298, "util": 70.353364}]} 2026-04-19 19:23:44.79581 2026-04-19 19:16:23.943354 +11 1 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626665, "timestamp_ms": 1776626665031, "time": "Sun Apr 19 19:24:25 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12434014208, "io_kbytes": 12142592, "bw_bytes": 2486305580, "bw": 2428032, "iops": 1185.562887, "runtime": 5001, "total_ios": 5929, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 189090, "max": 16204478, "mean": 586208.965593, "stddev": 416853.842503, "N": 5929}, "clat_ns": {"min": 9940, "max": 6061108, "mean": 239215.191938, "stddev": 282641.128478, "N": 5929, "percentile": {"1.000000": 132096, "5.000000": 140288, "10.000000": 146432, "20.000000": 158720, "30.000000": 171008, "40.000000": 181248, "50.000000": 191488, "60.000000": 201728, "70.000000": 222208, "80.000000": 252928, "90.000000": 325632, "95.000000": 423936, "99.000000": 921600, "99.500000": 2310144, "99.900000": 4358144, "99.950000": 5931008, "99.990000": 6062080}}, "lat_ns": {"min": 518772, "max": 16603939, "mean": 829828.959858, "stddev": 552720.469559, "N": 5929}, "bw_min": 1676007, "bw_max": 2834432, "bw_agg": 95.426429, "bw_mean": 2316985.75, "bw_dev": 486263.172801, "bw_samples": 4, "iops_min": 818, "iops_max": 1384, "iops_mean": 1131.25, "iops_stddev": 237.592614, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.4, "sys_cpu": 38.86, "ctx": 11597, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.016866, "20": 0.050599, "50": 0.0, "100": 0.0, "250": 79.558104, "500": 17.844493, "750": 1.231236, "1000": 0.337325}, "latency_ms": {"2": 0.40479, "4": 0.40479, "10": 0.151796, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 11676, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3329, "write_ticks": 0, "in_queue": 3328, "util": 77.682999}]} 2026-04-19 19:24:10.303651 2026-04-19 19:16:23.943354 +12 1 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626675, "timestamp_ms": 1776626675278, "time": "Sun Apr 19 19:24:35 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8040480768, "io_kbytes": 7852032, "bw_bytes": 1607453172, "bw": 1569778, "iops": 766.493403, "runtime": 5002, "total_ios": 3834, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 525401, "max": 6101789, "mean": 882590.464528, "stddev": 469098.755342, "N": 3834}, "clat_ns": {"min": 8590, "max": 5124885, "mean": 398916.492958, "stddev": 320898.613699, "N": 3834, "percentile": {"1.000000": 226304, "5.000000": 244736, "10.000000": 254976, "20.000000": 272384, "30.000000": 288768, "40.000000": 309248, "50.000000": 329728, "60.000000": 358400, "70.000000": 387072, "80.000000": 432128, "90.000000": 522240, "95.000000": 667648, "99.000000": 2023424, "99.500000": 2637824, "99.900000": 3915776, "99.950000": 4751360, "99.990000": 5144576}}, "lat_ns": {"min": 743062, "max": 6813741, "mean": 1286406.815336, "stddev": 622970.361727, "N": 3834}, "bw_min": 1485362, "bw_max": 1747244, "bw_agg": 100.0, "bw_mean": 1619159.5, "bw_dev": 111582.580509, "bw_samples": 4, "iops_min": 725, "iops_max": 853, "iops_mean": 790.5, "iops_stddev": 54.537449, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 4.479104, "sys_cpu": 24.095181, "ctx": 7686, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.026082, "20": 0.052165, "50": 0.026082, "100": 0.026082, "250": 7.668232, "500": 80.725091, "750": 7.642149, "1000": 1.382368}, "latency_ms": {"2": 1.382368, "4": 0.991132, "10": 0.078247, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7498, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3476, "in_queue": 3476, "util": 85.043164}]} 2026-04-19 19:24:27.171949 2026-04-19 19:16:23.943354 +13 1 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626689, "timestamp_ms": 1776626689120, "time": "Sun Apr 19 19:24:49 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 8, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7541358592, "io_kbytes": 7364608, "bw_bytes": 1070151637, "bw": 1045069, "iops": 255.144033, "runtime": 7047, "total_ios": 1798, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1166754, "max": 2986369020, "mean": 3472833.807008, "stddev": 70390828.772524, "N": 1798}, "clat_ns": {"min": 208581, "max": 3850081, "mean": 420699.80089, "stddev": 289605.210703, "N": 1798, "percentile": {"1.000000": 261120, "5.000000": 280576, "10.000000": 296960, "20.000000": 313344, "30.000000": 329728, "40.000000": 342016, "50.000000": 362496, "60.000000": 387072, "70.000000": 415744, "80.000000": 448512, "90.000000": 522240, "95.000000": 634880, "99.000000": 1925120, "99.500000": 2867200, "99.900000": 3784704, "99.950000": 3850240, "99.990000": 3850240}}, "lat_ns": {"min": 1418915, "max": 2986903711, "mean": 3899811.647942, "stddev": 70394867.044613, "N": 1798}, "bw_min": 110481, "bw_max": 1939564, "bw_agg": 100.0, "bw_mean": 1471354.2, "bw_dev": 765860.702976, "bw_samples": 5, "iops_min": 26, "iops_max": 473, "iops_mean": 358.8, "iops_stddev": 187.287747, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 7046, "usr_cpu": 2.980414, "sys_cpu": 10.615952, "ctx": 7206, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.389321, "500": 87.430478, "750": 9.010011, "1000": 1.334816}, "latency_ms": {"2": 0.945495, "4": 0.889878, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7197, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3127, "in_queue": 3126, "util": 50.042992}]} 2026-04-19 19:24:38.487441 2026-04-19 19:16:23.943354 +65 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:34:12' --until '2026-04-19 19:36:22' 55 OOM records. 2026-04-19 19:34:12.544933 2026-04-19 19:36:22.129231 +14 1 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626704, "timestamp_ms": 1776626704986, "time": "Sun Apr 19 19:25:04 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14701035520, "io_kbytes": 14356480, "bw_bytes": 2939619180, "bw": 2870721, "iops": 700.859828, "runtime": 5001, "total_ios": 3505, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 691532, "max": 7017751, "mean": 1233534.876462, "stddev": 440016.665387, "N": 3505}, "clat_ns": {"min": 6410, "max": 6054549, "mean": 174760.194579, "stddev": 187754.197642, "N": 3505, "percentile": {"1.000000": 119296, "5.000000": 124416, "10.000000": 127488, "20.000000": 134144, "30.000000": 140288, "40.000000": 144384, "50.000000": 148480, "60.000000": 156672, "70.000000": 168960, "80.000000": 185344, "90.000000": 216064, "95.000000": 248832, "99.000000": 391168, "99.500000": 1138688, "99.900000": 3325952, "99.950000": 4145152, "99.990000": 6062080}}, "lat_ns": {"min": 976233, "max": 8529086, "mean": 1413173.625963, "stddev": 522832.324116, "N": 3505}, "bw_min": 2144159, "bw_max": 3317760, "bw_agg": 100.0, "bw_mean": 2943722.5, "bw_dev": 544081.412732, "bw_samples": 4, "iops_min": 523, "iops_max": 810, "iops_mean": 718.5, "iops_stddev": 133.047611, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.18, "sys_cpu": 25.94, "ctx": 14008, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.057061, "20": 0.114123, "50": 0.028531, "100": 0.0, "250": 94.89301, "500": 4.136947, "750": 0.114123, "1000": 0.114123}, "latency_ms": {"2": 0.313837, "4": 0.171184, "10": 0.057061, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13503, "write_ios": 28, "read_merges": 0, "write_merges": 15, "read_ticks": 3594, "write_ticks": 10, "in_queue": 3605, "util": 86.473332}]} 2026-04-19 19:24:51.275363 2026-04-19 19:16:23.943354 +15 1 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626721, "timestamp_ms": 1776626721449, "time": "Sun Apr 19 19:25:21 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14717812736, "io_kbytes": 14372864, "bw_bytes": 2942385592, "bw": 2873423, "iops": 701.519392, "runtime": 5002, "total_ios": 3509, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 842813, "max": 11554424, "mean": 1239354.619835, "stddev": 360856.208176, "N": 3509}, "clat_ns": {"min": 6870, "max": 2907319, "mean": 166117.867199, "stddev": 96950.980458, "N": 3509, "percentile": {"1.000000": 117248, "5.000000": 124416, "10.000000": 127488, "20.000000": 134144, "30.000000": 138240, "40.000000": 144384, "50.000000": 148480, "60.000000": 154624, "70.000000": 164864, "80.000000": 181248, "90.000000": 214016, "95.000000": 246784, "99.000000": 370688, "99.500000": 497664, "99.900000": 2023424, "99.950000": 2703360, "99.990000": 2899968}}, "lat_ns": {"min": 965473, "max": 12465327, "mean": 1410348.502137, "stddev": 404285.027856, "N": 3509}, "bw_min": 2598361, "bw_max": 3081206, "bw_agg": 99.092496, "bw_mean": 2847347.75, "bw_dev": 202047.20367, "bw_samples": 4, "iops_min": 634, "iops_max": 752, "iops_mean": 695.0, "iops_stddev": 49.382858, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 0.819836, "sys_cpu": 32.313537, "ctx": 13985, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.056996, "20": 0.113993, "50": 0.028498, "100": 0.028498, "250": 94.898832, "500": 4.388715, "750": 0.256483, "1000": 0.056996}, "latency_ms": {"2": 0.056996, "4": 0.113993, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13845, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3792, "write_ticks": 0, "in_queue": 3792, "util": 85.295283}]} 2026-04-19 19:25:07.145501 2026-04-19 19:16:23.943354 +16 1 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626743, "timestamp_ms": 1776626743955, "time": "Sun Apr 19 19:25:43 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 18, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-192054Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6337593344, "io_kbytes": 6189056, "bw_bytes": 380567666, "bw": 371648, "iops": 90.734402, "runtime": 16653, "total_ios": 1511, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1289394, "max": 12855807793, "mean": 10674308.725347, "stddev": 330670990.878579, "N": 1511}, "clat_ns": {"min": 12630, "max": 5273106, "mean": 318393.287889, "stddev": 349580.580063, "N": 1511, "percentile": {"1.000000": 171008, "5.000000": 179200, "10.000000": 185344, "20.000000": 193536, "30.000000": 207872, "40.000000": 226304, "50.000000": 244736, "60.000000": 268288, "70.000000": 301056, "80.000000": 346112, "90.000000": 436224, "95.000000": 552960, "99.000000": 2088960, "99.500000": 3096576, "99.900000": 4947968, "99.950000": 5275648, "99.990000": 5275648}}, "lat_ns": {"min": 1451494, "max": 12856511165, "mean": 10999543.385837, "stddev": 330681172.525735, "N": 1511}, "bw_min": 1449984, "bw_max": 1810432, "bw_agg": 100.0, "bw_mean": 1545875.75, "bw_dev": 176498.957044, "bw_samples": 4, "iops_min": 354, "iops_max": 442, "iops_mean": 377.25, "iops_stddev": 43.200116, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 16652, "usr_cpu": 1.441268, "sys_cpu": 3.993514, "ctx": 6058, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.132363, "50": 0.066181, "100": 0.0, "250": 51.753805, "500": 41.495698, "750": 3.639974, "1000": 1.191264}, "latency_ms": {"2": 0.661813, "4": 0.860357, "10": 0.198544, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 6043, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2789, "in_queue": 2789, "util": 20.398635}]} 2026-04-19 19:25:24.141458 2026-04-19 19:16:23.943354 +17 1 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626757, "timestamp_ms": 1776626757824, "time": "Sun Apr 19 19:25:57 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10354688, "io_kbytes": 10112, "bw_bytes": 2069282, "bw": 2020, "iops": 4041.566747, "runtime": 5004, "total_ios": 20224, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 85810, "max": 177958330, "mean": 145852.439181, "stddev": 1271340.477486, "N": 20224}, "clat_ns": {"min": 4980, "max": 10837762, "mean": 88156.702581, "stddev": 160341.91331, "N": 20224, "percentile": {"1.000000": 5472, "5.000000": 5728, "10.000000": 6176, "20.000000": 63744, "30.000000": 68096, "40.000000": 77312, "50.000000": 84480, "60.000000": 90624, "70.000000": 96768, "80.000000": 102912, "90.000000": 120320, "95.000000": 150528, "99.000000": 218112, "99.500000": 261120, "99.900000": 2088960, "99.950000": 3391488, "99.990000": 5799936}}, "lat_ns": {"min": 142791, "max": 178736773, "mean": 236692.464597, "stddev": 1285179.443058, "N": 20224}, "bw_min": 2105, "bw_max": 2393, "bw_agg": 100.0, "bw_mean": 2282.25, "bw_dev": 123.766918, "bw_samples": 4, "iops_min": 4211, "iops_max": 4787, "iops_mean": 4565.25, "iops_stddev": 247.429956, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5003, "usr_cpu": 10.393764, "sys_cpu": 48.490905, "ctx": 20228, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.198378, "20": 0.519185, "50": 0.01, "100": 63.207081, "250": 23.462223, "500": 0.296677, "750": 0.093948, "1000": 0.044502}, "latency_ms": {"2": 0.06428, "4": 0.074169, "10": 0.019778, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 20064, "read_merges": 0, "write_merges": 2510, "read_ticks": 0, "write_ticks": 2601, "in_queue": 2601, "util": 79.028082}]} 2026-04-19 19:25:50.157398 2026-04-19 19:16:23.943354 +18 1 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626782, "timestamp_ms": 1776626782434, "time": "Sun Apr 19 19:26:22 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12861440, "io_kbytes": 12560, "bw_bytes": 2571773, "bw": 2511, "iops": 5022.995401, "runtime": 5001, "total_ios": 25120, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77681, "max": 3446210, "mean": 92763.553782, "stddev": 33228.335249, "N": 25120}, "clat_ns": {"min": 5240, "max": 6880571, "mean": 95530.86461, "stddev": 234797.632655, "N": 25120, "percentile": {"1.000000": 47872, "5.000000": 49920, "10.000000": 50944, "20.000000": 52480, "30.000000": 59648, "40.000000": 65280, "50.000000": 71168, "60.000000": 76288, "70.000000": 80384, "80.000000": 87552, "90.000000": 110080, "95.000000": 140288, "99.000000": 544768, "99.500000": 1564672, "99.900000": 4079616, "99.950000": 4816896, "99.990000": 6586368}}, "lat_ns": {"min": 122381, "max": 7017431, "mean": 190514.110072, "stddev": 241015.691758, "N": 25120}, "bw_min": 1802, "bw_max": 2915, "bw_agg": 100.0, "bw_mean": 2566.0, "bw_dev": 518.854508, "bw_samples": 4, "iops_min": 3605, "iops_max": 5830, "iops_mean": 5132.25, "iops_stddev": 1037.218195, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.08, "sys_cpu": 63.58, "ctx": 24995, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.163217, "20": 0.051752, "50": 6.130573, "100": 80.752389, "250": 11.476911, "500": 0.386146, "750": 0.147293, "1000": 0.051752}, "latency_ms": {"2": 0.545382, "4": 0.183121, "10": 0.111465, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23745, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2888, "write_ticks": 0, "in_queue": 2888, "util": 78.305573}]} 2026-04-19 19:26:00.223657 2026-04-19 19:16:23.943354 +19 1 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626807, "timestamp_ms": 1776626807945, "time": "Sun Apr 19 19:26:47 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12559872, "io_kbytes": 12265, "bw_bytes": 2511472, "bw": 2452, "iops": 4905.218956, "runtime": 5001, "total_ios": 24531, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77150, "max": 3133349, "mean": 92885.08744, "stddev": 31088.067294, "N": 24531}, "clat_ns": {"min": 4130, "max": 7205111, "mean": 99713.302882, "stddev": 235757.860745, "N": 24531, "percentile": {"1.000000": 44800, "5.000000": 51968, "10.000000": 54528, "20.000000": 61696, "30.000000": 67072, "40.000000": 70144, "50.000000": 75264, "60.000000": 79360, "70.000000": 82432, "80.000000": 87552, "90.000000": 109056, "95.000000": 134144, "99.000000": 946176, "99.500000": 1630208, "99.900000": 3850240, "99.950000": 4554752, "99.990000": 6782976}}, "lat_ns": {"min": 126571, "max": 7337952, "mean": 194731.811789, "stddev": 241344.126595, "N": 24531}, "bw_min": 1593, "bw_max": 2867, "bw_agg": 96.020183, "bw_mean": 2355.75, "bw_dev": 557.046602, "bw_samples": 4, "iops_min": 3186, "iops_max": 5734, "iops_mean": 4711.75, "iops_stddev": 1114.268781, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.28, "sys_cpu": 54.4, "ctx": 24325, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.811218, "20": 0.020382, "50": 1.059883, "100": 85.275774, "250": 11.507888, "500": 0.163059, "750": 0.110065, "1000": 0.061147}, "latency_ms": {"2": 0.664465, "4": 0.248665, "10": 0.077453, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24489, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3010, "write_ticks": 0, "in_queue": 3010, "util": 68.488304}]} 2026-04-19 19:26:24.591912 2026-04-19 19:16:23.943354 +20 1 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626817, "timestamp_ms": 1776626817670, "time": "Sun Apr 19 19:26:57 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5826560, "io_kbytes": 5690, "bw_bytes": 1165078, "bw": 1137, "iops": 2275.544891, "runtime": 5001, "total_ios": 11380, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 92700, "max": 7737163, "mean": 416657.740158, "stddev": 361184.242258, "N": 11380}, "clat_ns": {"min": 4360, "max": 1097283, "mean": 7566.447627, "stddev": 19461.393203, "N": 11380, "percentile": {"1.000000": 4512, "5.000000": 4640, "10.000000": 4640, "20.000000": 4768, "30.000000": 4768, "40.000000": 4832, "50.000000": 4896, "60.000000": 5024, "70.000000": 5152, "80.000000": 5408, "90.000000": 8896, "95.000000": 9536, "99.000000": 108032, "99.500000": 123392, "99.900000": 201728, "99.950000": 244736, "99.990000": 585728}}, "lat_ns": {"min": 174820, "max": 7756633, "mean": 427733.67109, "stddev": 361644.12339, "N": 11380}, "bw_min": 721, "bw_max": 1316, "bw_agg": 99.141173, "bw_mean": 1128.25, "bw_dev": 274.737905, "bw_samples": 4, "iops_min": 1443, "iops_max": 2632, "iops_mean": 2257.0, "iops_stddev": 549.145397, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.34, "sys_cpu": 66.8, "ctx": 11442, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.353251, "20": 1.977153, "50": 0.13181, "100": 0.281195, "250": 1.221441, "500": 0.017575, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22, "write_ios": 11068, "read_merges": 0, "write_merges": 19084, "read_ticks": 10, "write_ticks": 1684, "in_queue": 1695, "util": 58.58748}]} 2026-04-19 19:26:50.011049 2026-04-19 19:16:23.943354 +21 1 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626828, "timestamp_ms": 1776626828931, "time": "Sun Apr 19 19:27:08 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 57344000, "io_kbytes": 56000, "bw_bytes": 11466506, "bw": 11197, "iops": 2799.440112, "runtime": 5001, "total_ios": 14000, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 245451, "max": 6835720, "mean": 338989.499571, "stddev": 322202.1135, "N": 14000}, "clat_ns": {"min": 4730, "max": 260210, "mean": 5903.112286, "stddev": 3217.347943, "N": 14000, "percentile": {"1.000000": 4960, "5.000000": 5088, "10.000000": 5152, "20.000000": 5152, "30.000000": 5216, "40.000000": 5280, "50.000000": 5280, "60.000000": 5344, "70.000000": 5408, "80.000000": 5728, "90.000000": 8384, "95.000000": 9152, "99.000000": 12352, "99.500000": 15936, "99.900000": 18816, "99.950000": 29312, "99.990000": 179200}}, "lat_ns": {"min": 253261, "max": 6853661, "mean": 348273.366071, "stddev": 323535.841856, "N": 14000}, "bw_min": 10385, "bw_max": 13066, "bw_agg": 100.0, "bw_mean": 12298.5, "bw_dev": 1279.028407, "bw_samples": 4, "iops_min": 2596, "iops_max": 3266, "iops_mean": 3074.25, "iops_stddev": 319.67314, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.34, "sys_cpu": 66.72, "ctx": 14008, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 98.014286, "20": 1.9, "50": 0.064286, "100": 0.0, "250": 0.014286, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 13625, "read_merges": 0, "write_merges": 27250, "read_ticks": 0, "write_ticks": 2094, "in_queue": 2094, "util": 70.281124}]} 2026-04-19 19:27:01.053014 2026-04-19 19:16:23.943354 +22 1 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626845, "timestamp_ms": 1776626845431, "time": "Sun Apr 19 19:27:25 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 111489024, "io_kbytes": 108876, "bw_bytes": 22288889, "bw": 21766, "iops": 5441.623351, "runtime": 5002, "total_ios": 27219, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79930, "max": 4121952, "mean": 91368.506852, "stddev": 34347.32931, "N": 27219}, "clat_ns": {"min": 4040, "max": 13785051, "mean": 80953.347404, "stddev": 143210.676509, "N": 27219, "percentile": {"1.000000": 48896, "5.000000": 51456, "10.000000": 53504, "20.000000": 61184, "30.000000": 66048, "40.000000": 69120, "50.000000": 72192, "60.000000": 75264, "70.000000": 78336, "80.000000": 82432, "90.000000": 93696, "95.000000": 111104, "99.000000": 179200, "99.500000": 242688, "99.900000": 1908736, "99.950000": 2899968, "99.990000": 5013504}}, "lat_ns": {"min": 125761, "max": 13897412, "mean": 174801.067159, "stddev": 149458.935756, "N": 27219}, "bw_min": 20292, "bw_max": 23276, "bw_agg": 100.0, "bw_mean": 22179.0, "bw_dev": 1301.659966, "bw_samples": 4, "iops_min": 5073, "iops_max": 5819, "iops_mean": 5544.75, "iops_stddev": 325.414991, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 15.656869, "sys_cpu": 56.74865, "ctx": 27079, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.378412, "20": 0.025717, "50": 1.664279, "100": 90.547044, "250": 6.90694, "500": 0.106543, "750": 0.077152, "1000": 0.040413}, "latency_ms": {"2": 0.157978, "4": 0.077152, "10": 0.014696, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 27089, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3275, "write_ticks": 0, "in_queue": 3275, "util": 82.588843}]} 2026-04-19 19:27:11.066804 2026-04-19 19:16:23.943354 +23 1 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626862, "timestamp_ms": 1776626862918, "time": "Sun Apr 19 19:27:42 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 107216896, "io_kbytes": 104704, "bw_bytes": 21439091, "bw": 20936, "iops": 5234.153169, "runtime": 5001, "total_ios": 26176, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78610, "max": 1251564, "mean": 92737.252483, "stddev": 25480.306359, "N": 26176}, "clat_ns": {"min": 4360, "max": 6332479, "mean": 87412.761041, "stddev": 162436.360958, "N": 26176, "percentile": {"1.000000": 49920, "5.000000": 52992, "10.000000": 55552, "20.000000": 61696, "30.000000": 67072, "40.000000": 70144, "50.000000": 74240, "60.000000": 76288, "70.000000": 79360, "80.000000": 82432, "90.000000": 94720, "95.000000": 123392, "99.000000": 207872, "99.500000": 905216, "99.900000": 2899968, "99.950000": 3686400, "99.990000": 5341184}}, "lat_ns": {"min": 127570, "max": 6466399, "mean": 182062.43112, "stddev": 167555.561882, "N": 26176}, "bw_min": 20392, "bw_max": 23124, "bw_agg": 100.0, "bw_mean": 22222.0, "bw_dev": 1240.148378, "bw_samples": 4, "iops_min": 5098, "iops_max": 5781, "iops_mean": 5555.5, "iops_stddev": 310.037095, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.58, "sys_cpu": 62.02, "ctx": 26115, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.191015, "20": 0.049664, "50": 0.748778, "100": 90.453087, "250": 7.785758, "500": 0.13371, "750": 0.099328, "1000": 0.072586}, "latency_ms": {"2": 0.301803, "4": 0.13371, "10": 0.030562, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 25996, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3156, "write_ticks": 0, "in_queue": 3156, "util": 79.776179}]} 2026-04-19 19:27:27.659801 2026-04-19 19:16:23.943354 +66 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:34:12' --until '2026-04-19 19:36:22' 0 Systemd errors records 2026-04-19 19:34:12.544933 2026-04-19 19:36:22.129231 +24 1 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626872, "timestamp_ms": 1776626872367, "time": "Sun Apr 19 19:27:52 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 44908544, "io_kbytes": 43856, "bw_bytes": 8979912, "bw": 8769, "iops": 2192.361528, "runtime": 5001, "total_ios": 10964, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 123390, "max": 7269062, "mean": 435335.769154, "stddev": 361777.074624, "N": 10964}, "clat_ns": {"min": 4840, "max": 1261323, "mean": 6538.999453, "stddev": 12538.884728, "N": 10964, "percentile": {"1.000000": 5088, "5.000000": 5536, "10.000000": 5536, "20.000000": 5600, "30.000000": 5664, "40.000000": 5728, "50.000000": 5792, "60.000000": 5856, "70.000000": 5984, "80.000000": 6240, "90.000000": 8640, "95.000000": 9280, "99.000000": 13888, "99.500000": 16768, "99.900000": 21632, "99.950000": 112128, "99.990000": 268288}}, "lat_ns": {"min": 246941, "max": 7285632, "mean": 445227.100511, "stddev": 363398.093959, "N": 10964}, "bw_min": 5084, "bw_max": 10028, "bw_agg": 96.699389, "bw_mean": 8480.25, "bw_dev": 2337.294216, "bw_samples": 4, "iops_min": 1271, "iops_max": 2507, "iops_mean": 2120.0, "iops_stddev": 584.268774, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.1, "sys_cpu": 71.02, "ctx": 11009, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 97.619482, "20": 2.179861, "50": 0.145932, "100": 0.0, "250": 0.036483, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10668, "read_merges": 0, "write_merges": 21332, "read_ticks": 0, "write_ticks": 1703, "in_queue": 1703, "util": 73.574297}]} 2026-04-19 19:27:45.155992 2026-04-19 19:16:23.943354 +25 1 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626883, "timestamp_ms": 1776626883605, "time": "Sun Apr 19 19:28:03 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8212447232, "io_kbytes": 8019968, "bw_bytes": 1642161014, "bw": 1603672, "iops": 783.043391, "runtime": 5001, "total_ios": 3916, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 537801, "max": 10665232, "mean": 957884.762513, "stddev": 522853.014851, "N": 3916}, "clat_ns": {"min": 5500, "max": 4204703, "mean": 298122.316905, "stddev": 269738.599368, "N": 3916, "percentile": {"1.000000": 5792, "5.000000": 6304, "10.000000": 6816, "20.000000": 230400, "30.000000": 261120, "40.000000": 280576, "50.000000": 296960, "60.000000": 317440, "70.000000": 337920, "80.000000": 370688, "90.000000": 415744, "95.000000": 485376, "99.000000": 1384448, "99.500000": 2211840, "99.900000": 3620864, "99.950000": 3981312, "99.990000": 4227072}}, "lat_ns": {"min": 760222, "max": 10730112, "mean": 1261312.678498, "stddev": 587477.92152, "N": 3916}, "bw_min": 1413754, "bw_max": 1749290, "bw_agg": 98.540359, "bw_mean": 1580265.0, "bw_dev": 169801.36694, "bw_samples": 4, "iops_min": 690, "iops_max": 854, "iops_mean": 771.5, "iops_stddev": 82.963848, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.64, "sys_cpu": 23.24, "ctx": 8507, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 14.325843, "20": 2.73238, "50": 0.178754, "100": 0.0, "250": 7.99285, "500": 70.301328, "750": 2.73238, "1000": 0.331971}, "latency_ms": {"2": 0.81716, "4": 0.561798, "10": 0.025536, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8255, "read_merges": 0, "write_merges": 672, "read_ticks": 0, "write_ticks": 3542, "in_queue": 3542, "util": 89.861474}]} 2026-04-19 19:27:56.027816 2026-04-19 19:16:23.943354 +26 1 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626907, "timestamp_ms": 1776626907847, "time": "Sun Apr 19 19:28:27 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13245612032, "io_kbytes": 12935168, "bw_bytes": 2649122406, "bw": 2587033, "iops": 1263.2, "runtime": 5000, "total_ios": 6316, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 234670, "max": 7000101, "mean": 565235.316498, "stddev": 342790.308243, "N": 6316}, "clat_ns": {"min": 6570, "max": 7235602, "mean": 210351.102438, "stddev": 280148.12198, "N": 6316, "percentile": {"1.000000": 102912, "5.000000": 116224, "10.000000": 127488, "20.000000": 146432, "30.000000": 158720, "40.000000": 168960, "50.000000": 179200, "60.000000": 191488, "70.000000": 203776, "80.000000": 220160, "90.000000": 248832, "95.000000": 284672, "99.000000": 774144, "99.500000": 2441216, "99.900000": 4227072, "99.950000": 4358144, "99.990000": 7241728}}, "lat_ns": {"min": 487602, "max": 10900712, "mean": 779859.434769, "stddev": 476501.96328, "N": 6316}, "bw_min": 2084827, "bw_max": 2978909, "bw_agg": 96.980302, "bw_mean": 2508913.25, "bw_dev": 396889.612934, "bw_samples": 4, "iops_min": 1017, "iops_max": 1454, "iops_mean": 1224.5, "iops_stddev": 193.832402, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.14, "sys_cpu": 32.38, "ctx": 12591, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.031666, "20": 0.142495, "50": 0.0, "100": 0.316656, "250": 89.962001, "500": 8.217226, "750": 0.316656, "1000": 0.079164}, "latency_ms": {"2": 0.348322, "4": 0.443319, "10": 0.142495, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 12538, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3300, "write_ticks": 0, "in_queue": 3299, "util": 81.027668}]} 2026-04-19 19:28:07.39207 2026-04-19 19:16:23.943354 +27 1 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626928, "timestamp_ms": 1776626928376, "time": "Sun Apr 19 19:28:48 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14086569984, "io_kbytes": 13756416, "bw_bytes": 2816750646, "bw": 2750733, "iops": 1343.131374, "runtime": 5001, "total_ios": 6717, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 189830, "max": 5328336, "mean": 527827.931815, "stddev": 258662.91576, "N": 6717}, "clat_ns": {"min": 5470, "max": 4922294, "mean": 201309.919011, "stddev": 246401.802906, "N": 6717, "percentile": {"1.000000": 105984, "5.000000": 116224, "10.000000": 124416, "20.000000": 142336, "30.000000": 154624, "40.000000": 164864, "50.000000": 175104, "60.000000": 185344, "70.000000": 197632, "80.000000": 209920, "90.000000": 238592, "95.000000": 276480, "99.000000": 815104, "99.500000": 2072576, "99.900000": 3850240, "99.950000": 4423680, "99.990000": 4947968}}, "lat_ns": {"min": 477351, "max": 6316449, "mean": 732817.009826, "stddev": 384825.83635, "N": 6717}, "bw_min": 2931852, "bw_max": 3084288, "bw_agg": 100.0, "bw_mean": 3020330.75, "bw_dev": 64130.368393, "bw_samples": 4, "iops_min": 1431, "iops_max": 1506, "iops_mean": 1474.5, "iops_stddev": 31.522479, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 1.96, "sys_cpu": 41.26, "ctx": 13400, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.119101, "20": 0.044663, "50": 0.0, "100": 0.267977, "250": 91.811821, "500": 6.44633, "750": 0.282864, "1000": 0.223314}, "latency_ms": {"2": 0.267977, "4": 0.461516, "10": 0.074438, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13401, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3361, "write_ticks": 0, "in_queue": 3361, "util": 82.033097}]} 2026-04-19 19:28:29.965357 2026-04-19 19:16:23.943354 +28 1 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626937, "timestamp_ms": 1776626937679, "time": "Sun Apr 19 19:28:57 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7981760512, "io_kbytes": 7794688, "bw_bytes": 1596032895, "bw": 1558625, "iops": 761.04779, "runtime": 5001, "total_ios": 3806, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 504032, "max": 16819010, "mean": 997475.298476, "stddev": 709036.457442, "N": 3806}, "clat_ns": {"min": 5220, "max": 4287293, "mean": 295151.43773, "stddev": 306479.547172, "N": 3806, "percentile": {"1.000000": 5664, "5.000000": 6432, "10.000000": 9280, "20.000000": 230400, "30.000000": 257024, "40.000000": 272384, "50.000000": 288768, "60.000000": 305152, "70.000000": 321536, "80.000000": 350208, "90.000000": 403456, "95.000000": 473088, "99.000000": 1695744, "99.500000": 2670592, "99.900000": 3653632, "99.950000": 4014080, "99.990000": 4292608}}, "lat_ns": {"min": 727833, "max": 17325522, "mean": 1297513.17341, "stddev": 751220.031667, "N": 3806}, "bw_min": 1211204, "bw_max": 1781760, "bw_agg": 96.27968, "bw_mean": 1500640.25, "bw_dev": 287166.719186, "bw_samples": 4, "iops_min": 591, "iops_max": 870, "iops_mean": 732.5, "iops_stddev": 140.400617, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.42, "sys_cpu": 25.26, "ctx": 8300, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 14.16185, "20": 3.231739, "50": 0.262743, "100": 0.052549, "250": 8.775617, "500": 69.41671, "750": 2.07567, "1000": 0.341566}, "latency_ms": {"2": 0.840778, "4": 0.788229, "10": 0.052549, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8094, "read_merges": 0, "write_merges": 672, "read_ticks": 0, "write_ticks": 3553, "in_queue": 3553, "util": 89.495883}]} 2026-04-19 19:28:50.458096 2026-04-19 19:16:23.943354 +29 1 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626948, "timestamp_ms": 1776626948989, "time": "Sun Apr 19 19:29:08 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4345298944, "io_kbytes": 4243456, "bw_bytes": 789193415, "bw": 770696, "iops": 188.158373, "runtime": 5506, "total_ios": 1036, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1337324, "max": 2948383367, "mean": 5090110.792471, "stddev": 91535784.606021, "N": 1036}, "clat_ns": {"min": 5800, "max": 4250253, "mean": 196036.796332, "stddev": 287696.280416, "N": 1036, "percentile": {"1.000000": 6112, "5.000000": 6368, "10.000000": 6688, "20.000000": 8032, "30.000000": 16768, "40.000000": 183296, "50.000000": 199680, "60.000000": 220160, "70.000000": 240640, "80.000000": 264192, "90.000000": 309248, "95.000000": 378880, "99.000000": 1433600, "99.500000": 2179072, "99.900000": 3489792, "99.950000": 4227072, "99.990000": 4227072}}, "lat_ns": {"min": 1502844, "max": 2948907128, "mean": 5293650.801158, "stddev": 91546554.546878, "N": 1036}, "bw_min": 814289, "bw_max": 1714509, "bw_agg": 100.0, "bw_mean": 1412276.666667, "bw_dev": 517882.636315, "bw_samples": 3, "iops_min": 198, "iops_max": 418, "iops_mean": 344.333333, "iops_stddev": 126.72937, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5505, "usr_cpu": 0.871935, "sys_cpu": 11.280654, "ctx": 4484, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 23.552124, "20": 7.818533, "50": 0.965251, "100": 0.096525, "250": 42.181467, "500": 23.166023, "750": 0.772201, "1000": 0.19305}, "latency_ms": {"2": 0.675676, "4": 0.482625, "10": 0.096525, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 4477, "read_merges": 0, "write_merges": 336, "read_ticks": 0, "write_ticks": 1954, "in_queue": 1955, "util": 42.481752}]} 2026-04-19 19:29:01.205076 2026-04-19 19:16:23.943354 +30 1 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626965, "timestamp_ms": 1776626965115, "time": "Sun Apr 19 19:29:25 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14856224768, "io_kbytes": 14508032, "bw_bytes": 2970650823, "bw": 2901026, "iops": 708.258348, "runtime": 5001, "total_ios": 3542, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 736622, "max": 7695513, "mean": 1217712.579616, "stddev": 483468.424029, "N": 3542}, "clat_ns": {"min": 5590, "max": 4620634, "mean": 173837.945793, "stddev": 191392.356217, "N": 3542, "percentile": {"1.000000": 12864, "5.000000": 122368, "10.000000": 127488, "20.000000": 136192, "30.000000": 140288, "40.000000": 146432, "50.000000": 152576, "60.000000": 160768, "70.000000": 173056, "80.000000": 185344, "90.000000": 207872, "95.000000": 242688, "99.000000": 321536, "99.500000": 1089536, "99.900000": 3391488, "99.950000": 4014080, "99.990000": 4620288}}, "lat_ns": {"min": 851832, "max": 11704405, "mean": 1397017.828063, "stddev": 558718.056329, "N": 3542}, "bw_min": 2135976, "bw_max": 3305472, "bw_agg": 98.180223, "bw_mean": 2848234.0, "bw_dev": 544209.050867, "bw_samples": 4, "iops_min": 521, "iops_max": 807, "iops_mean": 695.25, "iops_stddev": 133.072349, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.24, "sys_cpu": 32.12, "ctx": 14098, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.367024, "20": 0.762281, "50": 0.0, "100": 0.028233, "250": 94.918125, "500": 3.274986, "750": 0.056465, "1000": 0.084698}, "latency_ms": {"2": 0.169396, "4": 0.282326, "10": 0.056465, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14163, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3635, "write_ticks": 0, "in_queue": 3634, "util": 69.179427}]} 2026-04-19 19:29:11.158118 2026-04-19 19:16:23.943354 +31 1 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626980, "timestamp_ms": 1776626980001, "time": "Sun Apr 19 19:29:40 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15011414016, "io_kbytes": 14659584, "bw_bytes": 3001682466, "bw": 2931330, "iops": 715.656869, "runtime": 5001, "total_ios": 3579, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 747242, "max": 8619636, "mean": 1209014.927913, "stddev": 443455.711074, "N": 3579}, "clat_ns": {"min": 6560, "max": 4279793, "mean": 168053.366583, "stddev": 116970.158268, "N": 3579, "percentile": {"1.000000": 107008, "5.000000": 123392, "10.000000": 127488, "20.000000": 134144, "30.000000": 140288, "40.000000": 146432, "50.000000": 152576, "60.000000": 162816, "70.000000": 175104, "80.000000": 187392, "90.000000": 209920, "95.000000": 236544, "99.000000": 317440, "99.500000": 399360, "99.900000": 2244608, "99.950000": 2408448, "99.990000": 4292608}}, "lat_ns": {"min": 854273, "max": 8845016, "mean": 1382203.401788, "stddev": 483308.108322, "N": 3579}, "bw_min": 2295560, "bw_max": 3284992, "bw_agg": 96.325473, "bw_mean": 2823618.0, "bw_dev": 449026.331065, "bw_samples": 4, "iops_min": 560, "iops_max": 802, "iops_mean": 689.25, "iops_stddev": 109.79792, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.52, "sys_cpu": 30.66, "ctx": 14252, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.139704, "20": 0.558815, "50": 0.0, "100": 0.055882, "250": 95.669181, "500": 3.157307, "750": 0.139704, "1000": 0.0}, "latency_ms": {"2": 0.167645, "4": 0.083822, "10": 0.027941, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13839, "write_ios": 23, "read_merges": 0, "write_merges": 12, "read_ticks": 3590, "write_ticks": 11, "in_queue": 3603, "util": 82.2128}]} 2026-04-19 19:29:27.273658 2026-04-19 19:16:23.943354 +32 1 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776626990, "timestamp_ms": 1776626990228, "time": "Sun Apr 19 19:29:50 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-192548Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8585740288, "io_kbytes": 8384512, "bw_bytes": 1716804696, "bw": 1676567, "iops": 409.318136, "runtime": 5001, "total_ios": 2047, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1292624, "max": 12803388, "mean": 2189056.575476, "stddev": 1011115.644448, "N": 2047}, "clat_ns": {"min": 5510, "max": 7694893, "mean": 227738.711773, "stddev": 344691.969404, "N": 2047, "percentile": {"1.000000": 5792, "5.000000": 6304, "10.000000": 7904, "20.000000": 171008, "30.000000": 185344, "40.000000": 193536, "50.000000": 203776, "60.000000": 220160, "70.000000": 234496, "80.000000": 252928, "90.000000": 288768, "95.000000": 346112, "99.000000": 1433600, "99.500000": 2998272, "99.900000": 3981312, "99.950000": 4177920, "99.990000": 7700480}}, "lat_ns": {"min": 1450254, "max": 14538313, "mean": 2423468.905227, "stddev": 1135575.00857, "N": 2047}, "bw_min": 1470464, "bw_max": 1898645, "bw_agg": 97.403678, "bw_mean": 1633038.25, "bw_dev": 185018.395306, "bw_samples": 4, "iops_min": 359, "iops_max": 463, "iops_mean": 398.25, "iops_stddev": 45.028695, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.24, "sys_cpu": 17.8, "ctx": 8532, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 11.382511, "20": 4.787494, "50": 0.390816, "100": 0.048852, "250": 61.944309, "500": 19.198828, "750": 0.683928, "1000": 0.097704}, "latency_ms": {"2": 0.635076, "4": 0.73278, "10": 0.097704, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8308, "read_merges": 0, "write_merges": 336, "read_ticks": 0, "write_ticks": 3698, "in_queue": 3698, "util": 82.061607}]} 2026-04-19 19:29:42.09078 2026-04-19 19:16:23.943354 +33 1 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627004, "timestamp_ms": 1776627004808, "time": "Sun Apr 19 19:30:04 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6891520, "io_kbytes": 6730, "bw_bytes": 1378028, "bw": 1345, "iops": 2691.461708, "runtime": 5001, "total_ios": 13460, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 85001, "max": 8487466, "mean": 219605.685513, "stddev": 486194.161037, "N": 13460}, "clat_ns": {"min": 5070, "max": 20595191, "mean": 136957.191605, "stddev": 379477.566728, "N": 13460, "percentile": {"1.000000": 5408, "5.000000": 5984, "10.000000": 9920, "20.000000": 72192, "30.000000": 83456, "40.000000": 92672, "50.000000": 99840, "60.000000": 117248, "70.000000": 140288, "80.000000": 158720, "90.000000": 193536, "95.000000": 242688, "99.000000": 585728, "99.500000": 1925120, "99.900000": 4882432, "99.950000": 6127616, "99.990000": 18481152}}, "lat_ns": {"min": 140560, "max": 21676335, "mean": 359685.712259, "stddev": 608116.321335, "N": 13460}, "bw_min": 824, "bw_max": 1343, "bw_agg": 82.928939, "bw_mean": 1116.25, "bw_dev": 241.442022, "bw_samples": 4, "iops_min": 1649, "iops_max": 2687, "iops_mean": 2233.25, "iops_stddev": 482.654034, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.56, "sys_cpu": 36.56, "ctx": 13476, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 10.312036, "20": 2.31055, "50": 0.222883, "100": 37.065379, "250": 45.438336, "500": 3.491828, "750": 0.334324, "1000": 0.1263}, "latency_ms": {"2": 0.230312, "4": 0.312036, "10": 0.1263, "20": 0.022288, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 6, "write_ios": 12919, "read_merges": 0, "write_merges": 1615, "read_ticks": 6, "write_ticks": 2071, "in_queue": 2076, "util": 55.869958}]} 2026-04-19 19:29:57.531131 2026-04-19 19:16:23.943354 +34 1 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627033, "timestamp_ms": 1776627033610, "time": "Sun Apr 19 19:30:33 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12464128, "io_kbytes": 12172, "bw_bytes": 2492327, "bw": 2433, "iops": 4867.826435, "runtime": 5001, "total_ios": 24344, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78790, "max": 3324420, "mean": 94899.324639, "stddev": 33983.444088, "N": 24344}, "clat_ns": {"min": 4630, "max": 6774211, "mean": 100059.255422, "stddev": 234787.579072, "N": 24344, "percentile": {"1.000000": 49920, "5.000000": 52480, "10.000000": 53504, "20.000000": 56064, "30.000000": 63744, "40.000000": 70144, "50.000000": 73216, "60.000000": 79360, "70.000000": 83456, "80.000000": 89600, "90.000000": 114176, "95.000000": 142336, "99.000000": 856064, "99.500000": 1630208, "99.900000": 3850240, "99.950000": 4554752, "99.990000": 5603328}}, "lat_ns": {"min": 125831, "max": 6916731, "mean": 197004.718329, "stddev": 241635.931841, "N": 24344}, "bw_min": 1117, "bw_max": 2881, "bw_agg": 97.990352, "bw_mean": 2385.25, "bw_dev": 847.291518, "bw_samples": 4, "iops_min": 2235, "iops_max": 5763, "iops_mean": 4771.5, "iops_stddev": 1694.583036, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.42, "sys_cpu": 59.68, "ctx": 24244, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.156096, "20": 0.061617, "50": 0.70654, "100": 85.51183, "250": 12.101545, "500": 0.287545, "750": 0.127341, "1000": 0.082156}, "latency_ms": {"2": 0.607953, "4": 0.271114, "10": 0.086264, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23008, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2858, "write_ticks": 0, "in_queue": 2859, "util": 71.33758}]} 2026-04-19 19:30:07.336934 2026-04-19 19:16:23.943354 +35 1 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627058, "timestamp_ms": 1776627058753, "time": "Sun Apr 19 19:30:58 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12743680, "io_kbytes": 12445, "bw_bytes": 2548226, "bw": 2488, "iops": 4977.004599, "runtime": 5001, "total_ios": 24890, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79091, "max": 4188222, "mean": 92440.591201, "stddev": 46516.855084, "N": 24890}, "clat_ns": {"min": 4770, "max": 5941508, "mean": 97624.19996, "stddev": 228445.718452, "N": 24890, "percentile": {"1.000000": 48896, "5.000000": 51456, "10.000000": 53504, "20.000000": 58112, "30.000000": 64256, "40.000000": 70144, "50.000000": 73216, "60.000000": 80384, "70.000000": 82432, "80.000000": 86528, "90.000000": 103936, "95.000000": 134144, "99.000000": 700416, "99.500000": 1630208, "99.900000": 3850240, "99.950000": 4489216, "99.990000": 5406720}}, "lat_ns": {"min": 124901, "max": 6063338, "mean": 191965.016151, "stddev": 236510.544939, "N": 24890}, "bw_min": 1108, "bw_max": 2916, "bw_agg": 98.091143, "bw_mean": 2441.0, "bw_dev": 889.01556, "bw_samples": 4, "iops_min": 2216, "iops_max": 5832, "iops_mean": 4882.5, "iops_stddev": 1778.35289, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.46, "sys_cpu": 58.24, "ctx": 24795, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.148654, "20": 0.016071, "50": 2.012857, "100": 86.669345, "250": 9.867417, "500": 0.200884, "750": 0.092407, "1000": 0.12053}, "latency_ms": {"2": 0.522298, "4": 0.281237, "10": 0.068301, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24265, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2956, "write_ticks": 0, "in_queue": 2956, "util": 74.088907}]} 2026-04-19 19:30:35.685408 2026-04-19 19:16:23.943354 +36 1 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627068, "timestamp_ms": 1776627068421, "time": "Sun Apr 19 19:31:08 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5753856, "io_kbytes": 5619, "bw_bytes": 1150541, "bw": 1123, "iops": 2247.15057, "runtime": 5001, "total_ios": 11238, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 96380, "max": 123584258, "mean": 421738.042267, "stddev": 1210809.6596, "N": 11238}, "clat_ns": {"min": 4640, "max": 1151993, "mean": 7955.270333, "stddev": 20447.266737, "N": 11238, "percentile": {"1.000000": 4832, "5.000000": 4960, "10.000000": 5024, "20.000000": 5088, "30.000000": 5216, "40.000000": 5280, "50.000000": 5344, "60.000000": 5472, "70.000000": 5600, "80.000000": 5920, "90.000000": 8640, "95.000000": 9408, "99.000000": 112128, "99.500000": 130560, "99.900000": 195584, "99.950000": 230400, "99.990000": 700416}}, "lat_ns": {"min": 185010, "max": 123636768, "mean": 433129.946699, "stddev": 1211606.141724, "N": 11238}, "bw_min": 592, "bw_max": 1311, "bw_agg": 99.147792, "bw_mean": 1114.25, "bw_dev": 348.535388, "bw_samples": 4, "iops_min": 1185, "iops_max": 2622, "iops_mean": 2228.75, "iops_stddev": 696.571305, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.86, "sys_cpu": 70.88, "ctx": 11283, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.333867, "20": 1.957644, "50": 0.169069, "100": 0.195764, "250": 1.299164, "500": 0.026695, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10931, "read_merges": 0, "write_merges": 18877, "read_ticks": 0, "write_ticks": 2016, "in_queue": 2142, "util": 78.376206}]} 2026-04-19 19:31:01.215486 2026-04-19 19:16:23.943354 +86 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:39:49.152506 2026-04-19 19:39:49.15251 +37 1 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627079, "timestamp_ms": 1776627079672, "time": "Sun Apr 19 19:31:19 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 55435264, "io_kbytes": 54136, "bw_bytes": 11084835, "bw": 10825, "iops": 2706.258748, "runtime": 5001, "total_ios": 13534, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 96120, "max": 4593254, "mean": 114533.852298, "stddev": 48357.816476, "N": 13534}, "clat_ns": {"min": 7090, "max": 8587185, "mean": 240974.753731, "stddev": 350866.619186, "N": 13534, "percentile": {"1.000000": 146432, "5.000000": 154624, "10.000000": 160768, "20.000000": 168960, "30.000000": 175104, "40.000000": 181248, "50.000000": 185344, "60.000000": 191488, "70.000000": 205824, "80.000000": 236544, "90.000000": 280576, "95.000000": 317440, "99.000000": 1761280, "99.500000": 2768896, "99.900000": 5406720, "99.950000": 6586368, "99.990000": 7176192}}, "lat_ns": {"min": 242621, "max": 8742636, "mean": 358068.306192, "stddev": 358449.577904, "N": 13534}, "bw_min": 6120, "bw_max": 13168, "bw_agg": 99.685597, "bw_mean": 10791.0, "bw_dev": 3321.934176, "bw_samples": 4, "iops_min": 1530, "iops_max": 3292, "iops_mean": 2697.75, "iops_stddev": 830.483544, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.38, "sys_cpu": 35.22, "ctx": 13540, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.110832, "20": 0.118221, "50": 0.01, "100": 0.0, "250": 84.158416, "500": 13.403281, "750": 0.354662, "1000": 0.251219}, "latency_ms": {"2": 0.761046, "4": 0.61327, "10": 0.221664, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 13137, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 1988, "in_queue": 1989, "util": 75.627888}]} 2026-04-19 19:31:11.701503 2026-04-19 19:16:23.943354 +38 1 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627095, "timestamp_ms": 1776627095537, "time": "Sun Apr 19 19:31:35 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 113217536, "io_kbytes": 110564, "bw_bytes": 22638979, "bw": 22108, "iops": 5527.094581, "runtime": 5001, "total_ios": 27641, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78730, "max": 3192570, "mean": 90458.168265, "stddev": 25502.067571, "N": 27641}, "clat_ns": {"min": 4450, "max": 4913974, "mean": 80887.060164, "stddev": 108538.268886, "N": 27641, "percentile": {"1.000000": 50944, "5.000000": 52992, "10.000000": 54528, "20.000000": 61696, "30.000000": 66048, "40.000000": 70144, "50.000000": 75264, "60.000000": 79360, "70.000000": 82432, "80.000000": 84480, "90.000000": 92672, "95.000000": 109056, "99.000000": 179200, "99.500000": 224256, "99.900000": 1548288, "99.950000": 2965504, "99.990000": 4554752}}, "lat_ns": {"min": 127900, "max": 5044745, "mean": 173263.45664, "stddev": 113642.363423, "N": 27641}, "bw_min": 21228, "bw_max": 23100, "bw_agg": 100.0, "bw_mean": 22357.0, "bw_dev": 803.554603, "bw_samples": 4, "iops_min": 5307, "iops_max": 5775, "iops_mean": 5589.25, "iops_stddev": 200.888651, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.68, "sys_cpu": 66.54, "ctx": 27543, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.108534, "20": 0.043414, "50": 0.484787, "100": 93.118918, "250": 5.824681, "500": 0.144713, "750": 0.079592, "1000": 0.021707}, "latency_ms": {"2": 0.104917, "4": 0.039796, "10": 0.028943, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 27511, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3313, "write_ticks": 0, "in_queue": 3313, "util": 85.646123}]} 2026-04-19 19:31:21.742445 2026-04-19 19:16:23.943354 +39 1 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627113, "timestamp_ms": 1776627113150, "time": "Sun Apr 19 19:31:53 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 107470848, "io_kbytes": 104952, "bw_bytes": 21472696, "bw": 20969, "iops": 5242.357642, "runtime": 5005, "total_ios": 26238, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79421, "max": 3416490, "mean": 92056.14338, "stddev": 32502.307291, "N": 26238}, "clat_ns": {"min": 4680, "max": 14034792, "mean": 87206.606449, "stddev": 178424.939711, "N": 26238, "percentile": {"1.000000": 50944, "5.000000": 53504, "10.000000": 56064, "20.000000": 63232, "30.000000": 68096, "40.000000": 71168, "50.000000": 76288, "60.000000": 80384, "70.000000": 83456, "80.000000": 86528, "90.000000": 94720, "95.000000": 118272, "99.000000": 193536, "99.500000": 292864, "99.900000": 2473984, "99.950000": 3784704, "99.990000": 6258688}}, "lat_ns": {"min": 127510, "max": 14177423, "mean": 181415.838936, "stddev": 184066.259474, "N": 26238}, "bw_min": 15108, "bw_max": 22824, "bw_agg": 100.0, "bw_mean": 20986.4, "bw_dev": 3298.057125, "bw_samples": 5, "iops_min": 3777, "iops_max": 5706, "iops_mean": 5246.6, "iops_stddev": 824.514281, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5004, "usr_cpu": 7.673861, "sys_cpu": 63.189448, "ctx": 26170, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.118149, "20": 0.026679, "50": 0.426862, "100": 91.580913, "250": 7.28333, "500": 0.114338, "750": 0.083848, "1000": 0.034301}, "latency_ms": {"2": 0.163884, "4": 0.121961, "10": 0.041924, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 26234, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3220, "write_ticks": 0, "in_queue": 3220, "util": 79.322568}]} 2026-04-19 19:31:37.821581 2026-04-19 19:16:23.943354 +40 1 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627122, "timestamp_ms": 1776627122475, "time": "Sun Apr 19 19:32:02 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 42471424, "io_kbytes": 41476, "bw_bytes": 8492586, "bw": 8293, "iops": 2073.385323, "runtime": 5001, "total_ios": 10369, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93730, "max": 18924357, "mean": 116936.736715, "stddev": 188072.075744, "N": 10369}, "clat_ns": {"min": 4670, "max": 176679067, "mean": 348708.756968, "stddev": 1788423.825089, "N": 10369, "percentile": {"1.000000": 171008, "5.000000": 189440, "10.000000": 199680, "20.000000": 211968, "30.000000": 226304, "40.000000": 252928, "50.000000": 276480, "60.000000": 288768, "70.000000": 301056, "80.000000": 321536, "90.000000": 378880, "95.000000": 432128, "99.000000": 2801664, "99.500000": 3784704, "99.900000": 4816896, "99.950000": 6717440, "99.990000": 13434880}}, "lat_ns": {"min": 259591, "max": 176824017, "mean": 468548.411612, "stddev": 1800139.437653, "N": 10369}, "bw_min": 4651, "bw_max": 10452, "bw_agg": 93.530616, "bw_mean": 7757.5, "bw_dev": 2442.496605, "bw_samples": 4, "iops_min": 1162, "iops_max": 2613, "iops_mean": 1939.0, "iops_stddev": 610.85241, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.48, "sys_cpu": 23.76, "ctx": 10339, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.453274, "20": 0.028932, "50": 0.0, "100": 0.0, "250": 38.605459, "500": 57.63333, "750": 0.761886, "1000": 0.270036}, "latency_ms": {"2": 0.810107, "4": 1.157296, "10": 0.250747, "20": 0.019288, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10060, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 1517, "in_queue": 1517, "util": 27.550201}]} 2026-04-19 19:31:55.280402 2026-04-19 19:16:23.943354 +41 1 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627133, "timestamp_ms": 1776627133756, "time": "Sun Apr 19 19:32:13 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3084910592, "io_kbytes": 3012608, "bw_bytes": 609545661, "bw": 595259, "iops": 290.654021, "runtime": 5061, "total_ios": 1471, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 558561, "max": 3048907477, "mean": 2855694.547247, "stddev": 79477149.895502, "N": 1471}, "clat_ns": {"min": 15361, "max": 308872541, "mean": 563462.878314, "stddev": 8045966.762307, "N": 1471, "percentile": {"1.000000": 218112, "5.000000": 246784, "10.000000": 259072, "20.000000": 276480, "30.000000": 296960, "40.000000": 321536, "50.000000": 337920, "60.000000": 354304, "70.000000": 370688, "80.000000": 391168, "90.000000": 428032, "95.000000": 485376, "99.000000": 815104, "99.500000": 1155072, "99.900000": 3850240, "99.950000": 308281344, "99.990000": 308281344}}, "lat_ns": {"min": 766822, "max": 3049751059, "mean": 3424377.666893, "stddev": 79891193.567903, "N": 1471}, "bw_min": 122880, "bw_max": 1761566, "bw_agg": 100.0, "bw_mean": 1002932.666667, "bw_dev": 826062.91681, "bw_samples": 3, "iops_min": 60, "iops_max": 860, "iops_mean": 489.666667, "iops_stddev": 403.286912, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5061, "usr_cpu": 1.817823, "sys_cpu": 7.449121, "ctx": 2980, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.203943, "50": 0.0, "100": 0.0, "250": 6.526173, "500": 89.530931, "750": 2.515296, "1000": 0.67981}, "latency_ms": {"2": 0.135962, "4": 0.339905, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.067981, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 2983, "read_merges": 0, "write_merges": 8, "read_ticks": 0, "write_ticks": 7353, "in_queue": 10399, "util": 87.602974}]} 2026-04-19 19:32:06.266019 2026-04-19 19:16:23.943354 +42 1 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627150, "timestamp_ms": 1776627150150, "time": "Sun Apr 19 19:32:30 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12631146496, "io_kbytes": 12335104, "bw_bytes": 2525724154, "bw": 2466527, "iops": 1204.359128, "runtime": 5001, "total_ios": 6023, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 365801, "max": 13677620, "mean": 572098.541092, "stddev": 469717.683438, "N": 6023}, "clat_ns": {"min": 6330, "max": 8374245, "mean": 242515.570812, "stddev": 424033.420765, "N": 6023, "percentile": {"1.000000": 101888, "5.000000": 113152, "10.000000": 122368, "20.000000": 144384, "30.000000": 156672, "40.000000": 166912, "50.000000": 177152, "60.000000": 189440, "70.000000": 201728, "80.000000": 218112, "90.000000": 257024, "95.000000": 309248, "99.000000": 2375680, "99.500000": 3653632, "99.900000": 5341184, "99.950000": 5931008, "99.990000": 8355840}}, "lat_ns": {"min": 474622, "max": 14410833, "mean": 818641.822182, "stddev": 709070.574453, "N": 6023}, "bw_min": 1581522, "bw_max": 3096576, "bw_agg": 95.646775, "bw_mean": 2359154.0, "bw_dev": 843558.007722, "bw_samples": 4, "iops_min": 772, "iops_max": 1512, "iops_mean": 1151.75, "iops_stddev": 411.822272, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.3, "sys_cpu": 37.06, "ctx": 12036, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.116221, "20": 0.099618, "50": 0.0, "100": 0.581106, "250": 88.07903, "500": 8.052466, "750": 0.33206, "1000": 0.348663}, "latency_ms": {"2": 1.079196, "4": 1.04599, "10": 0.265648, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 12053, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3064, "write_ticks": 0, "in_queue": 3064, "util": 69.398157}]} 2026-04-19 19:32:15.906864 2026-04-19 19:16:23.943354 +43 1 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627165, "timestamp_ms": 1776627165139, "time": "Sun Apr 19 19:32:45 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13801357312, "io_kbytes": 13477888, "bw_bytes": 2759719518, "bw": 2695038, "iops": 1315.936813, "runtime": 5001, "total_ios": 6581, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 211951, "max": 7712123, "mean": 538693.485792, "stddev": 289663.253933, "N": 6581}, "clat_ns": {"min": 7050, "max": 7197161, "mean": 204231.981918, "stddev": 263078.070105, "N": 6581, "percentile": {"1.000000": 104960, "5.000000": 117248, "10.000000": 125440, "20.000000": 144384, "30.000000": 154624, "40.000000": 166912, "50.000000": 177152, "60.000000": 187392, "70.000000": 197632, "80.000000": 211968, "90.000000": 242688, "95.000000": 276480, "99.000000": 692224, "99.500000": 2473984, "99.900000": 3981312, "99.950000": 4489216, "99.990000": 7176192}}, "lat_ns": {"min": 488961, "max": 8656296, "mean": 746966.054703, "stddev": 417613.571437, "N": 6581}, "bw_min": 1724739, "bw_max": 2932736, "bw_agg": 96.572791, "bw_mean": 2602674.0, "bw_dev": 586080.572987, "bw_samples": 4, "iops_min": 842, "iops_max": 1432, "iops_mean": 1270.5, "iops_stddev": 286.065843, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.2, "sys_cpu": 37.22, "ctx": 13132, "majf": 0, "minf": 529, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.091172, "20": 0.075976, "50": 0.0, "100": 0.395077, "250": 90.882845, "500": 7.096186, "750": 0.516639, "1000": 0.182343}, "latency_ms": {"2": 0.182343, "4": 0.486248, "10": 0.091172, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13029, "write_ios": 25, "read_merges": 0, "write_merges": 16, "read_ticks": 3322, "write_ticks": 12, "in_queue": 3340, "util": 76.831683}]} 2026-04-19 19:32:32.234986 2026-04-19 19:16:23.943354 +44 1 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627174, "timestamp_ms": 1776627174918, "time": "Sun Apr 19 19:32:54 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8212447232, "io_kbytes": 8019968, "bw_bytes": 1642161014, "bw": 1603672, "iops": 783.043391, "runtime": 5001, "total_ios": 3916, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 519502, "max": 17016270, "mean": 861540.022217, "stddev": 559420.758184, "N": 3916}, "clat_ns": {"min": 10420, "max": 5864027, "mean": 392881.183095, "stddev": 353198.339175, "N": 3916, "percentile": {"1.000000": 222208, "5.000000": 246784, "10.000000": 259072, "20.000000": 276480, "30.000000": 292864, "40.000000": 309248, "50.000000": 325632, "60.000000": 350208, "70.000000": 378880, "80.000000": 415744, "90.000000": 485376, "95.000000": 585728, "99.000000": 2179072, "99.500000": 3358720, "99.900000": 4685824, "99.950000": 4882432, "99.990000": 5865472}}, "lat_ns": {"min": 756752, "max": 17561432, "mean": 1259555.208376, "stddev": 730798.451185, "N": 3916}, "bw_min": 1398784, "bw_max": 1765376, "bw_agg": 97.376468, "bw_mean": 1561600.0, "bw_dev": 165963.834518, "bw_samples": 4, "iops_min": 683, "iops_max": 862, "iops_mean": 762.5, "iops_stddev": 81.037029, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.06, "sys_cpu": 23.46, "ctx": 7845, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.20429, "50": 0.0, "100": 0.025536, "250": 5.643514, "500": 85.495403, "750": 5.541369, "1000": 0.970378}, "latency_ms": {"2": 1.046987, "4": 0.868233, "10": 0.20429, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7640, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3466, "in_queue": 3465, "util": 87.050793}]} 2026-04-19 19:32:47.689206 2026-04-19 19:16:23.943354 +45 1 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627189, "timestamp_ms": 1776627189257, "time": "Sun Apr 19 19:33:09 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7616856064, "io_kbytes": 7438336, "bw_bytes": 1521849363, "bw": 1486181, "iops": 362.837163, "runtime": 5005, "total_ios": 1816, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1341344, "max": 251677320, "mean": 2395382.697137, "stddev": 6349016.568367, "N": 1816}, "clat_ns": {"min": 11280, "max": 35480486, "mean": 333005.956498, "stddev": 1320887.618492, "N": 1816, "percentile": {"1.000000": 154624, "5.000000": 166912, "10.000000": 175104, "20.000000": 185344, "30.000000": 193536, "40.000000": 203776, "50.000000": 220160, "60.000000": 242688, "70.000000": 276480, "80.000000": 333824, "90.000000": 403456, "95.000000": 501760, "99.000000": 1712128, "99.500000": 2506752, "99.900000": 34340864, "99.950000": 35389440, "99.990000": 35389440}}, "lat_ns": {"min": 1493585, "max": 252081151, "mean": 2735442.645925, "stddev": 6488727.935323, "N": 1816}, "bw_min": 957506, "bw_max": 1912832, "bw_agg": 100.0, "bw_mean": 1497460.0, "bw_dev": 403232.312941, "bw_samples": 4, "iops_min": 233, "iops_max": 467, "iops_mean": 365.25, "iops_stddev": 98.712968, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5004, "usr_cpu": 3.43725, "sys_cpu": 17.805755, "ctx": 7272, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.055066, "50": 0.055066, "100": 0.0, "250": 63.270925, "500": 31.497797, "750": 3.359031, "1000": 0.385463}, "latency_ms": {"2": 0.715859, "4": 0.440529, "10": 0.055066, "20": 0.0, "50": 0.165198, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7239, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3892, "in_queue": 3892, "util": 88.35468}]} 2026-04-19 19:32:59.754675 2026-04-19 19:16:23.943354 +46 1 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627214, "timestamp_ms": 1776627214736, "time": "Sun Apr 19 19:33:34 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15065939968, "io_kbytes": 14712832, "bw_bytes": 3012585476, "bw": 2941978, "iops": 718.256349, "runtime": 5001, "total_ios": 3592, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 601912, "max": 7240831, "mean": 1202596.087138, "stddev": 484252.932459, "N": 3592}, "clat_ns": {"min": 6000, "max": 4812024, "mean": 172113.794265, "stddev": 167519.280377, "N": 3592, "percentile": {"1.000000": 105984, "5.000000": 124416, "10.000000": 127488, "20.000000": 134144, "30.000000": 140288, "40.000000": 146432, "50.000000": 152576, "60.000000": 158720, "70.000000": 168960, "80.000000": 185344, "90.000000": 214016, "95.000000": 246784, "99.000000": 366592, "99.500000": 569344, "99.900000": 3391488, "99.950000": 4751360, "99.990000": 4816896}}, "lat_ns": {"min": 843133, "max": 9961559, "mean": 1379681.984131, "stddev": 552583.998746, "N": 3592}, "bw_min": 2464958, "bw_max": 3400375, "bw_agg": 100.0, "bw_mean": 3118440.75, "bw_dev": 439689.091781, "bw_samples": 4, "iops_min": 601, "iops_max": 830, "iops_mean": 761.0, "iops_stddev": 107.65067, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 5.758848, "sys_cpu": 28.194361, "ctx": 14300, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.167038, "20": 0.194878, "50": 0.02784, "100": 0.083519, "250": 94.793987, "500": 4.203786, "750": 0.139198, "1000": 0.055679}, "latency_ms": {"2": 0.139198, "4": 0.139198, "10": 0.055679, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13825, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3513, "write_ticks": 0, "in_queue": 3513, "util": 83.364255}]} 2026-04-19 19:33:20.323123 2026-04-19 19:16:23.943354 +47 1 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627230, "timestamp_ms": 1776627230140, "time": "Sun Apr 19 19:33:50 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14617149440, "io_kbytes": 14274560, "bw_bytes": 2922260983, "bw": 2853770, "iops": 696.721311, "runtime": 5002, "total_ios": 3485, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 609862, "max": 7909763, "mean": 1235339.636729, "stddev": 420265.512128, "N": 3485}, "clat_ns": {"min": 7290, "max": 4212863, "mean": 180311.9934, "stddev": 184963.212105, "N": 3485, "percentile": {"1.000000": 115200, "5.000000": 126464, "10.000000": 130560, "20.000000": 138240, "30.000000": 144384, "40.000000": 150528, "50.000000": 158720, "60.000000": 171008, "70.000000": 183296, "80.000000": 195584, "90.000000": 220160, "95.000000": 246784, "99.000000": 362496, "99.500000": 610304, "99.900000": 3948544, "99.950000": 4112384, "99.990000": 4227072}}, "lat_ns": {"min": 881742, "max": 8112054, "mean": 1420801.754376, "stddev": 489499.745866, "N": 3485}, "bw_min": 2344663, "bw_max": 3183504, "bw_agg": 96.259773, "bw_mean": 2747033.75, "bw_dev": 351177.456917, "bw_samples": 4, "iops_min": 572, "iops_max": 777, "iops_mean": 670.5, "iops_stddev": 85.807925, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 3.539292, "sys_cpu": 31.453709, "ctx": 13864, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.057389, "20": 0.315638, "50": 0.0, "100": 0.028694, "250": 94.748924, "500": 4.246772, "750": 0.172166, "1000": 0.028694}, "latency_ms": {"2": 0.143472, "4": 0.172166, "10": 0.086083, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13685, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3650, "write_ticks": 0, "in_queue": 3649, "util": 87.275628}]} 2026-04-19 19:33:36.812932 2026-04-19 19:16:23.943354 +48 1 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1345MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627239, "timestamp_ms": 1776627239952, "time": "Sun Apr 19 19:33:59 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1345MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-192956Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8841592832, "io_kbytes": 8634368, "bw_bytes": 1767611521, "bw": 1726183, "iops": 421.431427, "runtime": 5002, "total_ios": 2108, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1236214, "max": 14680104, "mean": 2062687.896584, "stddev": 937040.881084, "N": 2108}, "clat_ns": {"min": 8000, "max": 5310656, "mean": 282200.759488, "stddev": 296339.889348, "N": 2108, "percentile": {"1.000000": 154624, "5.000000": 171008, "10.000000": 177152, "20.000000": 187392, "30.000000": 197632, "40.000000": 211968, "50.000000": 228352, "60.000000": 244736, "70.000000": 272384, "80.000000": 309248, "90.000000": 366592, "95.000000": 460800, "99.000000": 1302528, "99.500000": 2867200, "99.900000": 4292608, "99.950000": 4554752, "99.990000": 5341184}}, "lat_ns": {"min": 1397014, "max": 15088345, "mean": 2351810.972011, "stddev": 1047679.488734, "N": 2108}, "bw_min": 1563108, "bw_max": 1902737, "bw_agg": 100.0, "bw_mean": 1779979.5, "bw_dev": 154664.919445, "bw_samples": 4, "iops_min": 381, "iops_max": 464, "iops_mean": 434.0, "iops_stddev": 37.797707, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 2.678928, "sys_cpu": 21.371451, "ctx": 8438, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.094877, "20": 0.094877, "50": 0.047438, "100": 0.0, "250": 61.812144, "500": 34.155598, "750": 1.944972, "1000": 0.56926}, "latency_ms": {"2": 0.56926, "4": 0.56926, "10": 0.142315, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8246, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3694, "in_queue": 3694, "util": 89.459948}]} 2026-04-19 19:33:52.220189 2026-04-19 19:16:23.943354 +49 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:34:07.019429 2026-04-19 19:34:07.019432 +50 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:20:52' --until '2026-04-19 19:34:04' 0 OOM records. 2026-04-19 19:20:52.477774 2026-04-19 19:34:04.994626 +51 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:20:52' --until '2026-04-19 19:34:04' 0 Systemd errors records 2026-04-19 19:20:52.477774 2026-04-19 19:34:04.994626 +52 1 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 274MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-193415Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:20.027573 2026-04-19 19:16:23.943354 +63 1 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627377, "timestamp_ms": 1776627377428, "time": "Sun Apr 19 19:36:17 2026", "jobs": [{"jobname": "seq_read_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_256k", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "274MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles", "offset_increment": "3k", "bs": "256k", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12177113088, "io_kbytes": 11891712, "bw_bytes": 1014674867, "bw": 990893, "iops": 3870.677444, "runtime": 12001, "total_ios": 46452, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 101660, "max": 6649880, "mean": 114135.983854, "stddev": 55669.002643, "N": 46452}, "clat_ns": {"min": 6800, "max": 20344270, "mean": 132234.452962, "stddev": 266295.760177, "N": 46452, "percentile": {"1.000000": 80384, "5.000000": 83456, "10.000000": 85504, "20.000000": 92672, "30.000000": 96768, "40.000000": 100864, "50.000000": 103936, "60.000000": 108032, "70.000000": 112128, "80.000000": 118272, "90.000000": 144384, "95.000000": 185344, "99.000000": 774144, "99.500000": 1777664, "99.900000": 4227072, "99.950000": 4685824, "99.990000": 7110656}}, "lat_ns": {"min": 179831, "max": 20505971, "mean": 248744.262464, "stddev": 276140.690408, "N": 46452}, "bw_min": 566784, "bw_max": 1141504, "bw_agg": 99.165458, "bw_mean": 982624.454545, "bw_dev": 211397.892732, "bw_samples": 11, "iops_min": 2214, "iops_max": 4459, "iops_mean": 3838.272727, "iops_stddev": 825.889471, "iops_samples": 11}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 3.8, "sys_cpu": 60.216667, "ctx": 46482, "majf": 0, "minf": 85, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.096874, "20": 0.092569, "50": 0.0, "100": 38.030655, "250": 60.074916, "500": 0.57694, "750": 0.116249, "1000": 0.137777}, "latency_ms": {"2": 0.469302, "4": 0.282012, "10": 0.118402, "20": 0.01, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 46337, "write_ios": 26, "read_merges": 0, "write_merges": 10, "read_ticks": 7372, "write_ticks": 8, "in_queue": 7383, "util": 73.885985}]} 2026-04-19 19:35:57.370449 2026-04-19 19:16:23.943354 +64 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:36:24.077396 2026-04-19 19:36:24.077399 +53 1 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-193415Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:19.98305 2026-04-19 19:16:23.943354 +54 1 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:20.223745 2026-04-19 19:16:23.943354 +55 1 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-193415Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:44.593167 2026-04-19 19:16:23.943354 +56 1 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 274MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-193415Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-193415Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:34:44.41551 2026-04-19 19:16:23.943354 +57 1 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-193415Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:02.394188 2026-04-19 19:16:23.943354 +58 1 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 274MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-193415Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:21.076277 2026-04-19 19:16:23.943354 +59 1 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-193415Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:21.08898 2026-04-19 19:16:23.943354 +60 1 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-193415Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-193415Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:21.447314 2026-04-19 19:16:23.943354 +61 1 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 274MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-193415Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-193415Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:40.857834 2026-04-19 19:16:23.943354 +62 1 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-193415Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-193415Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-19 19:35:40.877983 2026-04-19 19:16:23.943354 +67 1 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627399, "timestamp_ms": 1776627399104, "time": "Sun Apr 19 19:36:39 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7553941504, "io_kbytes": 7376896, "bw_bytes": 1510486203, "bw": 1475084, "iops": 1440.511898, "runtime": 5001, "total_ios": 7204, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 394232, "max": 5509307, "mean": 504444.692671, "stddev": 152874.495043, "N": 7204}, "clat_ns": {"min": 9790, "max": 3465790, "mean": 174395.409911, "stddev": 69463.300399, "N": 7204, "percentile": {"1.000000": 129536, "5.000000": 138240, "10.000000": 142336, "20.000000": 148480, "30.000000": 154624, "40.000000": 158720, "50.000000": 162816, "60.000000": 168960, "70.000000": 175104, "80.000000": 183296, "90.000000": 207872, "95.000000": 261120, "99.000000": 337920, "99.500000": 399360, "99.900000": 782336, "99.950000": 1302528, "99.990000": 3457024}}, "lat_ns": {"min": 525022, "max": 6628330, "mean": 682576.388673, "stddev": 191911.811679, "N": 7204}, "bw_min": 1422336, "bw_max": 1519120, "bw_agg": 100.0, "bw_mean": 1483788.0, "bw_dev": 42668.568041, "bw_samples": 4, "iops_min": 1389, "iops_max": 1483, "iops_mean": 1448.75, "iops_stddev": 41.443737, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 0.0, "sys_cpu": 36.34, "ctx": 14423, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.013881, "20": 0.152693, "50": 0.013881, "100": 0.013881, "250": 94.017213, "500": 5.510827, "750": 0.166574, "1000": 0.041644}, "latency_ms": {"2": 0.041644, "4": 0.027762, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 7, "write_ios": 14004, "read_merges": 0, "write_merges": 0, "read_ticks": 2, "write_ticks": 3485, "in_queue": 3488, "util": 83.9048}]} 2026-04-19 19:36:31.06969 2026-04-19 19:16:23.943354 +68 1 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627408, "timestamp_ms": 1776627408804, "time": "Sun Apr 19 19:36:48 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3383754752, "io_kbytes": 3304448, "bw_bytes": 676615627, "bw": 660757, "iops": 2581.083783, "runtime": 5001, "total_ios": 12908, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 86040, "max": 452324208, "mean": 166799.13418, "stddev": 3980781.930035, "N": 12908}, "clat_ns": {"min": 9380, "max": 123195217, "mean": 206851.178804, "stddev": 1149144.425152, "N": 12908, "percentile": {"1.000000": 112128, "5.000000": 119296, "10.000000": 123392, "20.000000": 128512, "30.000000": 132096, "40.000000": 136192, "50.000000": 142336, "60.000000": 150528, "70.000000": 171008, "80.000000": 197632, "90.000000": 236544, "95.000000": 272384, "99.000000": 1302528, "99.500000": 3063808, "99.900000": 6258688, "99.950000": 7962624, "99.990000": 10682368}}, "lat_ns": {"min": 213130, "max": 452638149, "mean": 376294.508909, "stddev": 4144583.557136, "N": 12908}, "bw_min": 363776, "bw_max": 888576, "bw_agg": 93.559142, "bw_mean": 618199.5, "bw_dev": 236720.242381, "bw_samples": 4, "iops_min": 1421, "iops_max": 3471, "iops_mean": 2414.75, "iops_stddev": 924.661515, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 16.6, "sys_cpu": 24.94, "ctx": 12921, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.046483, "20": 0.21692, "50": 0.0, "100": 0.01, "250": 92.175395, "500": 6.120236, "750": 0.170437, "1000": 0.05423}, "latency_ms": {"2": 0.426092, "4": 0.472575, "10": 0.294391, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 12478, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3115, "in_queue": 3689, "util": 81.97511}]} 2026-04-19 19:36:41.526728 2026-04-19 19:16:23.943354 +69 1 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627419, "timestamp_ms": 1776627419060, "time": "Sun Apr 19 19:36:59 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1274871808, "io_kbytes": 1244992, "bw_bytes": 254923376, "bw": 248948, "iops": 3889.822036, "runtime": 5001, "total_ios": 19453, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 91160, "max": 3805502, "mean": 107360.977381, "stddev": 58369.454306, "N": 19453}, "clat_ns": {"min": 5940, "max": 15427086, "mean": 137900.050995, "stddev": 328232.247415, "N": 19453, "percentile": {"1.000000": 73216, "5.000000": 79360, "10.000000": 80384, "20.000000": 85504, "30.000000": 87552, "40.000000": 89600, "50.000000": 92672, "60.000000": 97792, "70.000000": 108032, "80.000000": 144384, "90.000000": 179200, "95.000000": 201728, "99.000000": 561152, "99.500000": 2211840, "99.900000": 4947968, "99.950000": 6324224, "99.990000": 9371648}}, "lat_ns": {"min": 161440, "max": 15556556, "mean": 247559.608287, "stddev": 339529.744624, "N": 19453}, "bw_min": 128704, "bw_max": 308032, "bw_agg": 100.0, "bw_mean": 249856.0, "bw_dev": 84411.091088, "bw_samples": 4, "iops_min": 2011, "iops_max": 4813, "iops_mean": 3904.0, "iops_stddev": 1318.923298, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 22.06, "sys_cpu": 29.42, "ctx": 19461, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.133655, "20": 0.138796, "50": 0.0, "100": 63.054542, "250": 34.534519, "500": 1.094947, "750": 0.138796, "1000": 0.056547}, "latency_ms": {"2": 0.303295, "4": 0.34442, "10": 0.195343, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 7, "write_ios": 18869, "read_merges": 0, "write_merges": 1, "read_ticks": 1, "write_ticks": 2610, "in_queue": 2611, "util": 77.009646}]} 2026-04-19 19:36:51.21382 2026-04-19 19:16:23.943354 +70 1 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627429, "timestamp_ms": 1776627429439, "time": "Sun Apr 19 19:37:09 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_1M", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13826523136, "io_kbytes": 13502464, "bw_bytes": 2764198947, "bw": 2699413, "iops": 2636.145542, "runtime": 5002, "total_ios": 13186, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 135301, "max": 4319513, "mean": 151820.988624, "stddev": 81750.113435, "N": 13186}, "clat_ns": {"min": 9040, "max": 4435654, "mean": 215993.385257, "stddev": 149751.59583, "N": 13186, "percentile": {"1.000000": 140288, "5.000000": 152576, "10.000000": 160768, "20.000000": 177152, "30.000000": 187392, "40.000000": 195584, "50.000000": 201728, "60.000000": 207872, "70.000000": 216064, "80.000000": 228352, "90.000000": 257024, "95.000000": 301056, "99.000000": 415744, "99.500000": 815104, "99.900000": 2801664, "99.950000": 3555328, "99.990000": 4423680}}, "lat_ns": {"min": 269691, "max": 4590334, "mean": 370130.061201, "stddev": 173092.577666, "N": 13186}, "bw_min": 2601430, "bw_max": 2839552, "bw_agg": 100.0, "bw_mean": 2766071.25, "bw_dev": 110679.284275, "bw_samples": 4, "iops_min": 2540, "iops_max": 2773, "iops_mean": 2701.0, "iops_stddev": 108.243553, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 17.696461, "sys_cpu": 38.65227, "ctx": 13199, "majf": 0, "minf": 276, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.037919, "20": 0.227514, "50": 0.01, "100": 0.022751, "250": 88.563628, "500": 10.412559, "750": 0.204763, "1000": 0.075838}, "latency_ms": {"2": 0.250265, "4": 0.15926, "10": 0.037919, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 12826, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3237, "write_ticks": 0, "in_queue": 3237, "util": 82.440231}]} 2026-04-19 19:37:01.1224 2026-04-19 19:16:23.943354 +71 1 loader /usr/bin/fio --name seq_read_64k --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627439, "timestamp_ms": 1776627439369, "time": "Sun Apr 19 19:37:19 2026", "jobs": [{"jobname": "seq_read_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_64k", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/read/bs_64k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 1443758080, "io_kbytes": 1409920, "bw_bytes": 288693877, "bw": 281927, "iops": 4405.118976, "runtime": 5001, "total_ios": 22030, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 86140, "max": 3517911, "mean": 100834.052519, "stddev": 37579.742887, "N": 22030}, "clat_ns": {"min": 4830, "max": 21048633, "mean": 115163.144848, "stddev": 335604.549654, "N": 22030, "percentile": {"1.000000": 58624, "5.000000": 64768, "10.000000": 68096, "20.000000": 74240, "30.000000": 78336, "40.000000": 80384, "50.000000": 82432, "60.000000": 84480, "70.000000": 87552, "80.000000": 94720, "90.000000": 126464, "95.000000": 162816, "99.000000": 798720, "99.500000": 1826816, "99.900000": 4489216, "99.950000": 5341184, "99.990000": 9240576}}, "lat_ns": {"min": 147350, "max": 21303324, "mean": 218015.413527, "stddev": 341951.736848, "N": 22030}, "bw_min": 181258, "bw_max": 341056, "bw_agg": 98.27629, "bw_mean": 277068.5, "bw_dev": 68659.343474, "bw_samples": 4, "iops_min": 2832, "iops_max": 5329, "iops_mean": 4329.0, "iops_stddev": 1072.867497, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.72, "sys_cpu": 59.36, "ctx": 22039, "majf": 0, "minf": 36, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.136178, "20": 0.086246, "50": 0.01, "100": 83.313663, "250": 14.879709, "500": 0.417612, "750": 0.136178, "1000": 0.090785}, "latency_ms": {"2": 0.490241, "4": 0.285974, "10": 0.145256, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 21441, "write_ios": 25, "read_merges": 0, "write_merges": 9, "read_ticks": 2886, "write_ticks": 7, "in_queue": 2894, "util": 69.614375}]} 2026-04-19 19:37:11.582439 2026-04-19 19:16:23.943354 +72 1 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627449, "timestamp_ms": 1776627449155, "time": "Sun Apr 19 19:37:29 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_64k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1168900096, "io_kbytes": 1141504, "bw_bytes": 233733272, "bw": 228255, "iops": 3566.486703, "runtime": 5001, "total_ios": 17836, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 92381, "max": 7859934, "mean": 115896.742824, "stddev": 101998.848989, "N": 17836}, "clat_ns": {"min": 5030, "max": 11935675, "mean": 147211.155192, "stddev": 325820.23155, "N": 17836, "percentile": {"1.000000": 10560, "5.000000": 82432, "10.000000": 84480, "20.000000": 87552, "30.000000": 90624, "40.000000": 93696, "50.000000": 96768, "60.000000": 102912, "70.000000": 118272, "80.000000": 154624, "90.000000": 207872, "95.000000": 242688, "99.000000": 716800, "99.500000": 2506752, "99.900000": 4620288, "99.950000": 6651904, "99.990000": 10289152}}, "lat_ns": {"min": 169281, "max": 12153336, "mean": 267064.674703, "stddev": 349147.898663, "N": 17836}, "bw_min": 168448, "bw_max": 290112, "bw_agg": 92.623541, "bw_mean": 211418.25, "bw_dev": 56435.54496, "bw_samples": 4, "iops_min": 2632, "iops_max": 4533, "iops_mean": 3303.25, "iops_stddev": 881.793768, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.78, "sys_cpu": 41.04, "ctx": 17845, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.953129, "20": 0.257905, "50": 0.0, "100": 54.917022, "250": 39.37542, "500": 3.30231, "750": 0.218659, "1000": 0.128953}, "latency_ms": {"2": 0.257905, "4": 0.437318, "10": 0.140166, "20": 0.011213, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14, "write_ios": 17309, "read_merges": 0, "write_merges": 1, "read_ticks": 4, "write_ticks": 2483, "in_queue": 2486, "util": 47.238401}]} 2026-04-19 19:37:21.790907 2026-04-19 19:16:23.943354 +73 1 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627459, "timestamp_ms": 1776627459040, "time": "Sun Apr 19 19:37:39 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_16k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "16k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 255066112, "io_kbytes": 249088, "bw_bytes": 50982632, "bw": 49787, "iops": 3111.73296, "runtime": 5003, "total_ios": 15568, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 55980, "max": 5112165, "mean": 107926.932618, "stddev": 57984.987753, "N": 15568}, "clat_ns": {"min": 4360, "max": 298339339, "mean": 199917.118191, "stddev": 3001818.714926, "N": 15568, "percentile": {"1.000000": 64768, "5.000000": 74240, "10.000000": 81408, "20.000000": 85504, "30.000000": 91648, "40.000000": 96768, "50.000000": 123392, "60.000000": 179200, "70.000000": 197632, "80.000000": 214016, "90.000000": 257024, "95.000000": 296960, "99.000000": 448512, "99.500000": 987136, "99.900000": 3981312, "99.950000": 4882432, "99.990000": 225443840}}, "lat_ns": {"min": 150291, "max": 298456590, "mean": 310214.720709, "stddev": 3002715.67836, "N": 15568}, "bw_min": 29650, "bw_max": 74992, "bw_agg": 97.092202, "bw_mean": 48340.5, "bw_dev": 19172.630936, "bw_samples": 4, "iops_min": 1853, "iops_max": 4687, "iops_mean": 3021.25, "iops_stddev": 1198.330053, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 9.916034, "sys_cpu": 32.586965, "ctx": 15539, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.61665, "20": 0.077081, "50": 0.0, "100": 42.503854, "250": 45.824769, "500": 10.097636, "750": 0.282631, "1000": 0.109198}, "latency_ms": {"2": 0.160586, "4": 0.231244, "10": 0.083505, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.01, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 17, "write_ios": 15323, "read_merges": 0, "write_merges": 0, "read_ticks": 7, "write_ticks": 3119, "in_queue": 3639, "util": 67.48343}]} 2026-04-19 19:37:31.302049 2026-04-19 19:16:23.943354 +74 1 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627468, "timestamp_ms": 1776627468593, "time": "Sun Apr 19 19:37:48 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_4k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 41623552, "io_kbytes": 40648, "bw_bytes": 8323045, "bw": 8127, "iops": 2031.993601, "runtime": 5001, "total_ios": 10162, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93640, "max": 171955342, "mean": 138296.491242, "stddev": 1742418.475613, "N": 10162}, "clat_ns": {"min": 5030, "max": 176337766, "mean": 337202.126451, "stddev": 1806006.956029, "N": 10162, "percentile": {"1.000000": 154624, "5.000000": 175104, "10.000000": 183296, "20.000000": 197632, "30.000000": 207872, "40.000000": 220160, "50.000000": 240640, "60.000000": 268288, "70.000000": 288768, "80.000000": 313344, "90.000000": 366592, "95.000000": 428032, "99.000000": 2998272, "99.500000": 3620864, "99.900000": 5406720, "99.950000": 7045120, "99.990000": 10682368}}, "lat_ns": {"min": 245091, "max": 176505456, "mean": 478570.286361, "stddev": 2511900.384259, "N": 10162}, "bw_min": 3856, "bw_max": 11508, "bw_agg": 100.0, "bw_mean": 8229.5, "bw_dev": 3195.967198, "bw_samples": 4, "iops_min": 964, "iops_max": 2877, "iops_mean": 2057.25, "iops_stddev": 798.948215, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.86, "sys_cpu": 24.92, "ctx": 10131, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.560913, "20": 0.0, "50": 0.0, "100": 0.0, "250": 52.794725, "500": 43.160795, "750": 0.698681, "1000": 0.295217}, "latency_ms": {"2": 0.777406, "4": 1.407203, "10": 0.275536, "20": 0.019681, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 3, "write_ios": 9878, "read_merges": 0, "write_merges": 16, "read_ticks": 2, "write_ticks": 1856, "in_queue": 2026, "util": 57.188755}]} 2026-04-19 19:37:41.277231 2026-04-19 19:16:23.943354 +75 1 loader /usr/bin/fio --name rand_read_16k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627480, "timestamp_ms": 1776627480799, "time": "Sun Apr 19 19:38:00 2026", "jobs": [{"jobname": "rand_read_16k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_read_16k", "numjobs": "1", "size": "100MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "16k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_16k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 382255104, "io_kbytes": 373296, "bw_bytes": 76435733, "bw": 74644, "iops": 4665.266947, "runtime": 5001, "total_ios": 23331, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82640, "max": 2234347, "mean": 97565.102653, "stddev": 29478.739951, "N": 23331}, "clat_ns": {"min": 5330, "max": 7216671, "mean": 105631.799194, "stddev": 238048.60929, "N": 23331, "percentile": {"1.000000": 54016, "5.000000": 57600, "10.000000": 62720, "20.000000": 68096, "30.000000": 72192, "40.000000": 75264, "50.000000": 78336, "60.000000": 82432, "70.000000": 84480, "80.000000": 89600, "90.000000": 113152, "95.000000": 146432, "99.000000": 1073152, "99.500000": 1744896, "99.900000": 3686400, "99.950000": 4751360, "99.990000": 6127616}}, "lat_ns": {"min": 134120, "max": 7347332, "mean": 204991.003386, "stddev": 244025.952318, "N": 23331}, "bw_min": 37856, "bw_max": 87376, "bw_agg": 95.498287, "bw_mean": 71284.0, "bw_dev": 23098.231505, "bw_samples": 4, "iops_min": 2366, "iops_max": 5461, "iops_mean": 4455.25, "iops_stddev": 1443.639469, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 21.36, "sys_cpu": 45.8, "ctx": 23306, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.145729, "20": 0.042861, "50": 0.090009, "100": 86.400069, "250": 11.872616, "500": 0.214307, "750": 0.128584, "1000": 0.094295}, "latency_ms": {"2": 0.651494, "4": 0.295744, "10": 0.064292, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23087, "write_ios": 1, "read_merges": 0, "write_merges": 5, "read_ticks": 2950, "write_ticks": 0, "in_queue": 2951, "util": 67.788557}]} 2026-04-19 19:37:51.289047 2026-04-19 19:16:23.943354 +76 1 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-193629Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627493, "timestamp_ms": 1776627493154, "time": "Sun Apr 19 19:38:13 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_read_4k", "numjobs": "1", "size": "100MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-193629Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-193629Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 98189312, "io_kbytes": 95888, "bw_bytes": 19633935, "bw": 19173, "iops": 4793.441312, "runtime": 5001, "total_ios": 23972, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78220, "max": 17521363, "mean": 95336.833306, "stddev": 126857.113531, "N": 23972}, "clat_ns": {"min": 4540, "max": 21261974, "mean": 101455.809319, "stddev": 297563.767729, "N": 23972, "percentile": {"1.000000": 49920, "5.000000": 52480, "10.000000": 55040, "20.000000": 62208, "30.000000": 68096, "40.000000": 71168, "50.000000": 75264, "60.000000": 79360, "70.000000": 82432, "80.000000": 87552, "90.000000": 111104, "95.000000": 142336, "99.000000": 806912, "99.500000": 1613824, "99.900000": 3817472, "99.950000": 4751360, "99.990000": 7897088}}, "lat_ns": {"min": 126490, "max": 21342894, "mean": 198827.299933, "stddev": 330586.774563, "N": 23972}, "bw_min": 11416, "bw_max": 23156, "bw_agg": 95.578518, "bw_mean": 18326.25, "bw_dev": 5333.559185, "bw_samples": 4, "iops_min": 2854, "iops_max": 5789, "iops_mean": 4581.25, "iops_stddev": 1333.34701, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 13.677265, "sys_cpu": 52.609478, "ctx": 23918, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.120974, "20": 0.066745, "50": 1.059569, "100": 86.004505, "250": 11.409144, "500": 0.183547, "750": 0.154347, "1000": 0.062573}, "latency_ms": {"2": 0.617387, "4": 0.24612, "10": 0.066745, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22849, "write_ios": 3, "read_merges": 0, "write_merges": 5, "read_ticks": 2879, "write_ticks": 60, "in_queue": 2941, "util": 70.689303}]} 2026-04-19 19:38:02.880808 2026-04-19 19:16:23.943354 +77 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:38:18.953895 2026-04-19 19:38:18.953898 +78 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:36:28' --until '2026-04-19 19:38:17' 0 OOM records. 2026-04-19 19:36:28.940886 2026-04-19 19:38:17.139284 +79 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:36:28' --until '2026-04-19 19:38:17' 0 Systemd errors records 2026-04-19 19:36:28.940886 2026-04-19 19:38:17.139284 +80 1 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627517, "timestamp_ms": 1776627517804, "time": "Sun Apr 19 19:38:37 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 10, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 18216910848, "io_kbytes": 17789952, "bw_bytes": 2024551105, "bw": 1977100, "iops": 1930.762392, "runtime": 8998, "total_ios": 17373, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 137441, "max": 4294693, "mean": 175778.606286, "stddev": 79093.341249, "N": 17373}, "clat_ns": {"min": 9450, "max": 13181500, "mean": 326658.240718, "stddev": 259845.449268, "N": 17373, "percentile": {"1.000000": 222208, "5.000000": 236544, "10.000000": 248832, "20.000000": 264192, "30.000000": 276480, "40.000000": 284672, "50.000000": 296960, "60.000000": 309248, "70.000000": 329728, "80.000000": 354304, "90.000000": 391168, "95.000000": 432128, "99.000000": 741376, "99.500000": 1036288, "99.900000": 4620288, "99.950000": 6324224, "99.990000": 7634944}}, "lat_ns": {"min": 342421, "max": 13407000, "mean": 505901.212629, "stddev": 280301.197399, "N": 17373}, "bw_min": 1456719, "bw_max": 2238273, "bw_agg": 98.529529, "bw_mean": 1948028.375, "bw_dev": 294962.426894, "bw_samples": 8, "iops_min": 1422, "iops_max": 2185, "iops_mean": 1902.0, "iops_stddev": 288.045631, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 9000, "usr_cpu": 15.055556, "sys_cpu": 25.144444, "ctx": 17435, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.040292, "20": 0.074829, "50": 0.0, "100": 0.0, "250": 10.700512, "500": 87.037357, "750": 1.185748, "1000": 0.448973}, "latency_ms": {"2": 0.178438, "4": 0.207218, "10": 0.120877, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 3, "write_ios": 17109, "read_merges": 0, "write_merges": 0, "read_ticks": 1, "write_ticks": 5840, "in_queue": 5841, "util": 88.571747}]} 2026-04-19 19:38:26.446109 2026-04-19 19:16:23.943354 +81 1 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627531, "timestamp_ms": 1776627531606, "time": "Sun Apr 19 19:38:51 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 10, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7231242240, "io_kbytes": 7061760, "bw_bytes": 803382095, "bw": 784552, "iops": 3064.659482, "runtime": 9001, "total_ios": 27585, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 90231, "max": 501320955, "mean": 149010.300489, "stddev": 3018281.031779, "N": 27585}, "clat_ns": {"min": 5690, "max": 108172732, "mean": 164942.978467, "stddev": 697900.25325, "N": 27585, "percentile": {"1.000000": 107008, "5.000000": 112128, "10.000000": 115200, "20.000000": 119296, "30.000000": 122368, "40.000000": 126464, "50.000000": 129536, "60.000000": 134144, "70.000000": 138240, "80.000000": 150528, "90.000000": 199680, "95.000000": 244736, "99.000000": 456704, "99.500000": 1515520, "99.900000": 4014080, "99.950000": 5406720, "99.990000": 9109504}}, "lat_ns": {"min": 212421, "max": 501699026, "mean": 316176.682001, "stddev": 3099619.631261, "N": 27585}, "bw_min": 355584, "bw_max": 958976, "bw_agg": 97.308043, "bw_mean": 763433.5, "bw_dev": 245704.305649, "bw_samples": 8, "iops_min": 1389, "iops_max": 3746, "iops_mean": 2982.125, "iops_stddev": 959.750628, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 9000, "usr_cpu": 22.022222, "sys_cpu": 25.711111, "ctx": 27616, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.058003, "20": 0.199384, "50": 0.01, "100": 0.061628, "250": 94.990031, "500": 3.719413, "750": 0.148632, "1000": 0.145006}, "latency_ms": {"2": 0.300888, "4": 0.271887, "10": 0.094254, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 9, "write_ios": 27158, "read_merges": 0, "write_merges": 6, "read_ticks": 2, "write_ticks": 6122, "in_queue": 6732, "util": 80.588694}]} 2026-04-19 19:38:39.957783 2026-04-19 19:16:23.943354 +87 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:38:24' --until '2026-04-19 19:39:47' 0 OOM records. 2026-04-19 19:38:24.331158 2026-04-19 19:39:47.414478 +88 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:38:24' --until '2026-04-19 19:39:47' 0 Systemd errors records 2026-04-19 19:38:24.331158 2026-04-19 19:39:47.414478 +89 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:39:57.096053 2026-04-19 19:39:57.096056 +90 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:39:54' --until '2026-04-19 19:39:55' 0 OOM records. 2026-04-19 19:39:54.039808 2026-04-19 19:39:55.102761 +1034 28 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-24 15:50:58.118057 2026-04-24 15:50:58.11806 +82 1 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627544, "timestamp_ms": 1776627544587, "time": "Sun Apr 19 19:39:04 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2128347136, "io_kbytes": 2078464, "bw_bytes": 266010140, "bw": 259775, "iops": 4058.992626, "runtime": 8001, "total_ios": 32476, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 90860, "max": 4173522, "mean": 107031.113284, "stddev": 48387.620904, "N": 32476}, "clat_ns": {"min": 6270, "max": 11028003, "mean": 127369.417631, "stddev": 240937.099298, "N": 32476, "percentile": {"1.000000": 74240, "5.000000": 80384, "10.000000": 82432, "20.000000": 86528, "30.000000": 89600, "40.000000": 91648, "50.000000": 94720, "60.000000": 97792, "70.000000": 103936, "80.000000": 130560, "90.000000": 179200, "95.000000": 205824, "99.000000": 342016, "99.500000": 1351680, "99.900000": 3981312, "99.950000": 4620288, "99.990000": 7503872}}, "lat_ns": {"min": 162520, "max": 11164833, "mean": 236504.065772, "stddev": 249715.136309, "N": 32476}, "bw_min": 148331, "bw_max": 304576, "bw_agg": 97.708203, "bw_mean": 253822.571429, "bw_dev": 54505.21693, "bw_samples": 7, "iops_min": 2317, "iops_max": 4759, "iops_mean": 3965.857143, "iops_stddev": 851.865488, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 35.7875, "sys_cpu": 17.9, "ctx": 32491, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.061584, "20": 0.206306, "50": 0.0, "100": 63.1143, "250": 34.785688, "500": 1.028452, "750": 0.120089, "1000": 0.064663}, "latency_ms": {"2": 0.258653, "4": 0.264811, "10": 0.092376, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 31931, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 4410, "in_queue": 4410, "util": 78.183415}]} 2026-04-19 19:38:53.91144 2026-04-19 19:16:23.943354 +83 1 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627557, "timestamp_ms": 1776627557426, "time": "Sun Apr 19 19:39:17 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_64k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2113077248, "io_kbytes": 2063552, "bw_bytes": 264101643, "bw": 257911, "iops": 4029.871266, "runtime": 8001, "total_ios": 32243, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 91570, "max": 4202872, "mean": 108859.439134, "stddev": 47480.215313, "N": 32243}, "clat_ns": {"min": 6210, "max": 8387505, "mean": 126656.063456, "stddev": 241490.03702, "N": 32243, "percentile": {"1.000000": 75264, "5.000000": 81408, "10.000000": 83456, "20.000000": 87552, "30.000000": 90624, "40.000000": 92672, "50.000000": 94720, "60.000000": 98816, "70.000000": 104960, "80.000000": 118272, "90.000000": 173056, "95.000000": 214016, "99.000000": 342016, "99.500000": 1073152, "99.900000": 4112384, "99.950000": 4816896, "99.990000": 8093696}}, "lat_ns": {"min": 162651, "max": 8562305, "mean": 237555.099029, "stddev": 250451.175424, "N": 32243}, "bw_min": 154752, "bw_max": 301184, "bw_agg": 97.892007, "bw_mean": 252475.714286, "bw_dev": 59568.845912, "bw_samples": 7, "iops_min": 2418, "iops_max": 4706, "iops_mean": 3944.857143, "iops_stddev": 930.809223, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 7.725, "sys_cpu": 46.4625, "ctx": 32252, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.114754, "20": 0.093043, "50": 0.0, "100": 62.416649, "250": 34.88199, "500": 1.77713, "750": 0.117855, "1000": 0.080638}, "latency_ms": {"2": 0.176783, "4": 0.238812, "10": 0.102348, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 9, "write_ios": 31702, "read_merges": 0, "write_merges": 0, "read_ticks": 3, "write_ticks": 4405, "in_queue": 4408, "util": 79.739054}]} 2026-04-19 19:39:06.920932 2026-04-19 19:16:23.943354 +84 1 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627570, "timestamp_ms": 1776627570530, "time": "Sun Apr 19 19:39:30 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_16k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "16k", "iodepth": "1", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 451035136, "io_kbytes": 440464, "bw_bytes": 56351216, "bw": 55030, "iops": 3439.405297, "runtime": 8004, "total_ios": 27529, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 87970, "max": 11050813, "mean": 106905.260235, "stddev": 84520.196507, "N": 27529}, "clat_ns": {"min": 4520, "max": 216592076, "mean": 170978.597188, "stddev": 1341790.653339, "N": 27529, "percentile": {"1.000000": 66048, "5.000000": 72192, "10.000000": 78336, "20.000000": 83456, "30.000000": 86528, "40.000000": 89600, "50.000000": 93696, "60.000000": 97792, "70.000000": 114176, "80.000000": 205824, "90.000000": 280576, "95.000000": 325632, "99.000000": 1269760, "99.500000": 2572288, "99.900000": 4620288, "99.950000": 5537792, "99.990000": 8716288}}, "lat_ns": {"min": 154201, "max": 216698576, "mean": 280077.540412, "stddev": 1346031.837023, "N": 27529}, "bw_min": 23512, "bw_max": 80767, "bw_agg": 94.9183, "bw_mean": 52234.428571, "bw_dev": 23504.615822, "bw_samples": 7, "iops_min": 1469, "iops_max": 5047, "iops_mean": 3264.285714, "iops_stddev": 1469.040811, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8004, "usr_cpu": 13.093453, "sys_cpu": 32.871064, "ctx": 27536, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.167097, "20": 0.076283, "50": 0.0, "100": 62.806495, "250": 22.993934, "500": 12.354245, "750": 0.341458, "1000": 0.148934}, "latency_ms": {"2": 0.414109, "4": 0.548512, "10": 0.145301, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14, "write_ios": 27166, "read_merges": 0, "write_merges": 5, "read_ticks": 4, "write_ticks": 4162, "in_queue": 4376, "util": 78.965863}]} 2026-04-19 19:39:20.05556 2026-04-19 19:16:23.943354 +85 1 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-193825Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776627583, "timestamp_ms": 1776627583205, "time": "Sun Apr 19 19:39:43 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_4k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-193825Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-193825Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 77479936, "io_kbytes": 75664, "bw_bytes": 9683781, "bw": 9456, "iops": 2364.204474, "runtime": 8001, "total_ios": 18916, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 50720, "max": 4168372, "mean": 116264.327342, "stddev": 44274.831923, "N": 18916}, "clat_ns": {"min": 6490, "max": 10639012, "mean": 291902.00296, "stddev": 369532.228559, "N": 18916, "percentile": {"1.000000": 168960, "5.000000": 183296, "10.000000": 189440, "20.000000": 199680, "30.000000": 207872, "40.000000": 216064, "50.000000": 224256, "60.000000": 236544, "70.000000": 268288, "80.000000": 301056, "90.000000": 350208, "95.000000": 411648, "99.000000": 2211840, "99.500000": 3260416, "99.900000": 4685824, "99.950000": 5210112, "99.990000": 9240576}}, "lat_ns": {"min": 256451, "max": 10775823, "mean": 410520.445919, "stddev": 378070.738047, "N": 18916}, "bw_min": 4836, "bw_max": 11820, "bw_agg": 100.0, "bw_mean": 9858.285714, "bw_dev": 2594.987843, "bw_samples": 7, "iops_min": 1209, "iops_max": 2955, "iops_mean": 2464.571429, "iops_stddev": 648.746961, "iops_samples": 7}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 4.0375, "sys_cpu": 32.3, "ctx": 18923, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.047579, "20": 0.042292, "50": 0.0, "100": 0.0, "250": 64.844576, "500": 32.305984, "750": 0.803553, "1000": 0.237894}, "latency_ms": {"2": 0.618524, "4": 0.903997, "10": 0.190315, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 3, "write_ios": 18793, "read_merges": 0, "write_merges": 0, "read_ticks": 2, "write_ticks": 2885, "in_queue": 2886, "util": 82.07701}]} 2026-04-19 19:39:32.90988 2026-04-19 19:16:23.943354 +91 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:39:54' --until '2026-04-19 19:39:55' 0 Systemd errors records 2026-04-19 19:39:54.039808 2026-04-19 19:39:55.102761 +92 1 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 19:40:04.532795 2026-04-19 19:40:04.532798 +93 1 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:40:02' --until '2026-04-19 19:40:02' 0 OOM records. 2026-04-19 19:40:02.021729 2026-04-19 19:40:02.713173 +94 1 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:40:02' --until '2026-04-19 19:40:02' 0 Systemd errors records 2026-04-19 19:40:02.021729 2026-04-19 19:40:02.713173 +95 2 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627728, "timestamp_ms": 1776627728422, "time": "Sun Apr 19 19:42:08 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "job_start": 1776627723162, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9314304, "io_kbytes": 9096, "bw_bytes": 1862488, "bw": 1818, "iops": 3637.672466, "runtime": 5001, "total_ios": 18192, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 64850, "max": 3819547, "mean": 123951.378023, "stddev": 87280.481338, "N": 18192}, "clat_ns": {"min": 22889, "max": 9859023, "mean": 135815.826572, "stddev": 102095.577505, "N": 18192, "percentile": {"1.000000": 23680, "5.000000": 24704, "10.000000": 25728, "20.000000": 119296, "30.000000": 126464, "40.000000": 132096, "50.000000": 138240, "60.000000": 146432, "70.000000": 158720, "80.000000": 175104, "90.000000": 199680, "95.000000": 220160, "99.000000": 280576, "99.500000": 305152, "99.900000": 358400, "99.950000": 419840, "99.990000": 5472256}}, "lat_ns": {"min": 170009, "max": 9949962, "mean": 259767.204595, "stddev": 105069.000154, "N": 18192}, "bw_min": 1791, "bw_max": 1853, "bw_agg": 100.0, "bw_mean": 1819.4, "bw_dev": 22.142719, "bw_samples": 5, "iops_min": 3582, "iops_max": 3707, "iops_mean": 3639.2, "iops_stddev": 44.628466, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 56.68, "sys_cpu": 10.5, "ctx": 18213, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 16.782102, "100": 0.170405, "250": 80.876209, "500": 2.127309, "750": 0.016491, "1000": 0.010994}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.010994, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 18194, "read_sectors": 0, "write_sectors": 34350, "read_merges": 0, "write_merges": 2302, "read_ticks": 0, "write_ticks": 2365, "in_queue": 2372, "util": 94.529412}]} 2026-04-19 19:42:02.719774 2026-04-19 19:16:23.943354 +96 2 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627805, "timestamp_ms": 1776627805224, "time": "Sun Apr 19 19:43:25 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "job_start": 1776627799964, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13834240, "io_kbytes": 13510, "bw_bytes": 2766294, "bw": 2701, "iops": 5402.919416, "runtime": 5001, "total_ios": 27020, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51310, "max": 1151523, "mean": 81669.765285, "stddev": 39310.492192, "N": 27020}, "clat_ns": {"min": 19280, "max": 13984701, "mean": 92984.343079, "stddev": 91688.74408, "N": 27020, "percentile": {"1.000000": 21120, "5.000000": 22144, "10.000000": 23168, "20.000000": 66048, "30.000000": 94720, "40.000000": 96768, "50.000000": 98816, "60.000000": 101888, "70.000000": 105984, "80.000000": 115200, "90.000000": 125440, "95.000000": 140288, "99.000000": 168960, "99.500000": 183296, "99.900000": 216064, "99.950000": 254976, "99.990000": 561152}}, "lat_ns": {"min": 104920, "max": 14062271, "mean": 174654.108364, "stddev": 89156.019005, "N": 27020}, "bw_min": 2666, "bw_max": 2750, "bw_agg": 99.98301, "bw_mean": 2701.8, "bw_dev": 30.597386, "bw_samples": 5, "iops_min": 5333, "iops_max": 5498, "iops_mean": 5404.4, "iops_stddev": 59.751987, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 77.14, "sys_cpu": 3.34, "ctx": 19673, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.011103, "50": 14.19319, "100": 41.025167, "250": 44.715026, "500": 0.044412, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 25665, "write_ios": 0, "read_sectors": 25665, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2733, "write_ticks": 0, "in_queue": 2733, "util": 97.051546}]} 2026-04-19 19:42:08.539215 2026-04-19 19:16:23.943354 +97 2 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627880, "timestamp_ms": 1776627880268, "time": "Sun Apr 19 19:44:40 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "job_start": 1776627874968, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13133824, "io_kbytes": 12826, "bw_bytes": 2626239, "bw": 2564, "iops": 5129.374125, "runtime": 5001, "total_ios": 25652, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 53569, "max": 10692471, "mean": 84671.419694, "stddev": 81492.979141, "N": 25652}, "clat_ns": {"min": 20880, "max": 9768586, "mean": 97292.624123, "stddev": 69918.90537, "N": 25652, "percentile": {"1.000000": 22144, "5.000000": 23168, "10.000000": 25472, "20.000000": 94720, "30.000000": 97792, "40.000000": 98816, "50.000000": 100864, "60.000000": 104960, "70.000000": 109056, "80.000000": 113152, "90.000000": 123392, "95.000000": 146432, "99.000000": 179200, "99.500000": 191488, "99.900000": 226304, "99.950000": 264192, "99.990000": 1011712}}, "lat_ns": {"min": 113759, "max": 10737331, "mean": 181964.043817, "stddev": 97044.03655, "N": 25652}, "bw_min": 2526, "bw_max": 2638, "bw_agg": 99.973232, "bw_mean": 2564.8, "bw_dev": 45.636608, "bw_samples": 5, "iops_min": 5053, "iops_max": 5276, "iops_mean": 5129.8, "iops_stddev": 91.061518, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 64.26, "sys_cpu": 15.52, "ctx": 20364, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 12.540932, "100": 32.28988, "250": 55.114611, "500": 0.042882, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 24566, "write_ios": 1, "read_sectors": 24566, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2751, "write_ticks": 0, "in_queue": 2752, "util": 90.044971}]} 2026-04-19 19:43:25.330709 2026-04-19 19:16:23.943354 +98 2 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627886, "timestamp_ms": 1776627886319, "time": "Sun Apr 19 19:44:46 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "job_start": 1776627880782, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7384576, "io_kbytes": 7211, "bw_bytes": 1476619, "bw": 1442, "iops": 2884.023195, "runtime": 5001, "total_ios": 14423, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 72210, "max": 3267832, "mean": 303469.512099, "stddev": 61046.468405, "N": 14423}, "clat_ns": {"min": 21399, "max": 556137, "mean": 27557.9324, "stddev": 21670.910821, "N": 14423, "percentile": {"1.000000": 22400, "5.000000": 22656, "10.000000": 22912, "20.000000": 23168, "30.000000": 23168, "40.000000": 23424, "50.000000": 23680, "60.000000": 23936, "70.000000": 24448, "80.000000": 25216, "90.000000": 27520, "95.000000": 35072, "99.000000": 146432, "99.500000": 171008, "99.900000": 292864, "99.950000": 325632, "99.990000": 407552}}, "lat_ns": {"min": 201399, "max": 3295832, "mean": 331027.444498, "stddev": 56635.386587, "N": 14423}, "bw_min": 1401, "bw_max": 1469, "bw_agg": 99.999255, "bw_mean": 1442.2, "bw_dev": 25.587106, "bw_samples": 5, "iops_min": 2803, "iops_max": 2939, "iops_mean": 2885.0, "iops_stddev": 50.911688, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.14, "sys_cpu": 71.9, "ctx": 14413, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.815988, "100": 0.159468, "250": 1.85121, "500": 0.166401, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 13821, "read_sectors": 0, "write_sectors": 110387, "read_merges": 0, "write_merges": 23932, "read_ticks": 0, "write_ticks": 2125, "in_queue": 2424, "util": 55.605657}]} 2026-04-19 19:44:40.375169 2026-04-19 19:16:23.943354 +99 2 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627892, "timestamp_ms": 1776627892124, "time": "Sun Apr 19 19:44:52 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "job_start": 1776627886828, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 55480320, "io_kbytes": 54180, "bw_bytes": 11093845, "bw": 10833, "iops": 2708.458308, "runtime": 5001, "total_ios": 13545, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 100210, "max": 1241104, "mean": 141425.721226, "stddev": 57864.215923, "N": 13545}, "clat_ns": {"min": 22690, "max": 2134268, "mean": 211164.847176, "stddev": 60578.577233, "N": 13545, "percentile": {"1.000000": 28032, "5.000000": 162816, "10.000000": 166912, "20.000000": 173056, "30.000000": 177152, "40.000000": 183296, "50.000000": 193536, "60.000000": 211968, "70.000000": 230400, "80.000000": 248832, "90.000000": 280576, "95.000000": 317440, "99.000000": 387072, "99.500000": 411648, "99.900000": 493568, "99.950000": 602112, "99.990000": 1548288}}, "lat_ns": {"min": 259289, "max": 2297377, "mean": 352590.568402, "stddev": 77710.77554, "N": 13545}, "bw_min": 10621, "bw_max": 10980, "bw_agg": 100.0, "bw_mean": 10837.8, "bw_dev": 147.601491, "bw_samples": 5, "iops_min": 2655, "iops_max": 2745, "iops_mean": 2709.0, "iops_stddev": 37.15508, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 26.5, "sys_cpu": 32.02, "ctx": 13767, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.764489, "100": 0.0, "250": 78.427464, "500": 19.719454, "750": 0.059062, "1000": 0.0}, "latency_ms": {"2": 0.022148, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12962, "read_sectors": 0, "write_sectors": 103976, "read_merges": 0, "write_merges": 35, "read_ticks": 0, "write_ticks": 1977, "in_queue": 2129, "util": 47.033552}]} 2026-04-19 19:44:46.429715 2026-04-19 19:16:23.943354 +100 2 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627915, "timestamp_ms": 1776627915429, "time": "Sun Apr 19 19:45:15 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "job_start": 1776627910214, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 111341568, "io_kbytes": 108732, "bw_bytes": 22263860, "bw": 21742, "iops": 5435.512897, "runtime": 5001, "total_ios": 27183, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 49789, "max": 592687, "mean": 74895.588419, "stddev": 30167.163394, "N": 27183}, "clat_ns": {"min": 20510, "max": 1454413, "mean": 98017.878527, "stddev": 30331.478219, "N": 27183, "percentile": {"1.000000": 21888, "5.000000": 55040, "10.000000": 62208, "20.000000": 90624, "30.000000": 92672, "40.000000": 94720, "50.000000": 96768, "60.000000": 99840, "70.000000": 104960, "80.000000": 112128, "90.000000": 130560, "95.000000": 150528, "99.000000": 177152, "99.500000": 189440, "99.900000": 238592, "99.950000": 261120, "99.990000": 387072}}, "lat_ns": {"min": 106240, "max": 1550752, "mean": 172913.466946, "stddev": 31977.888099, "N": 27183}, "bw_min": 21406, "bw_max": 22134, "bw_agg": 100.0, "bw_mean": 21750.6, "bw_dev": 273.045417, "bw_samples": 5, "iops_min": 5351, "iops_max": 5533, "iops_mean": 5436.6, "iops_stddev": 68.668042, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 37.68, "sys_cpu": 41.26, "ctx": 21759, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 4.72354, "100": 54.298643, "250": 40.904242, "500": 0.066218, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26964, "write_ios": 1, "read_sectors": 215712, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2800, "write_ticks": 0, "in_queue": 2800, "util": 50.16815}]} 2026-04-19 19:44:52.238926 2026-04-19 19:16:23.943354 +101 2 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627938, "timestamp_ms": 1776627938223, "time": "Sun Apr 19 19:45:38 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "job_start": 1776627933057, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 110960640, "io_kbytes": 108360, "bw_bytes": 22187690, "bw": 21667, "iops": 5416.916617, "runtime": 5001, "total_ios": 27090, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51190, "max": 534987, "mean": 75685.149243, "stddev": 33329.955587, "N": 27090}, "clat_ns": {"min": 19730, "max": 6722953, "mean": 96716.198597, "stddev": 55467.93443, "N": 27090, "percentile": {"1.000000": 21120, "5.000000": 22400, "10.000000": 55040, "20.000000": 92672, "30.000000": 93696, "40.000000": 95744, "50.000000": 98816, "60.000000": 102912, "70.000000": 105984, "80.000000": 110080, "90.000000": 120320, "95.000000": 138240, "99.000000": 166912, "99.500000": 179200, "99.900000": 218112, "99.950000": 254976, "99.990000": 1433600}}, "lat_ns": {"min": 102209, "max": 6786363, "mean": 172401.347841, "stddev": 53539.364762, "N": 27090}, "bw_min": 21253, "bw_max": 22164, "bw_agg": 100.0, "bw_mean": 21673.8, "bw_dev": 425.333046, "bw_samples": 5, "iops_min": 5314, "iops_max": 5539, "iops_mean": 5418.4, "iops_stddev": 105.315241, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 66.54, "sys_cpu": 12.82, "ctx": 21309, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.040605, "50": 8.781838, "100": 44.204504, "250": 46.91399, "500": 0.044297, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26636, "write_ios": 1, "read_sectors": 213088, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2812, "write_ticks": 0, "in_queue": 2812, "util": 90.613142}]} 2026-04-19 19:45:15.534161 2026-04-19 19:16:23.943354 +102 2 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627944, "timestamp_ms": 1776627944228, "time": "Sun Apr 19 19:45:44 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "job_start": 1776627938678, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 50421760, "io_kbytes": 49240, "bw_bytes": 10082335, "bw": 9846, "iops": 2461.507698, "runtime": 5001, "total_ios": 12310, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 104629, "max": 1416512, "mean": 158565.666775, "stddev": 61372.411517, "N": 12310}, "clat_ns": {"min": 24690, "max": 1335743, "mean": 230066.806255, "stddev": 56543.559901, "N": 12310, "percentile": {"1.000000": 31872, "5.000000": 177152, "10.000000": 185344, "20.000000": 193536, "30.000000": 203776, "40.000000": 214016, "50.000000": 226304, "60.000000": 236544, "70.000000": 250880, "80.000000": 268288, "90.000000": 292864, "95.000000": 317440, "99.000000": 382976, "99.500000": 415744, "99.900000": 464896, "99.950000": 489472, "99.990000": 724992}}, "lat_ns": {"min": 285098, "max": 1560671, "mean": 388632.47303, "stddev": 68423.922928, "N": 12310}, "bw_min": 9589, "bw_max": 9972, "bw_agg": 100.0, "bw_mean": 9849.8, "bw_dev": 154.989354, "bw_samples": 5, "iops_min": 2397, "iops_max": 2494, "iops_mean": 2462.2, "iops_stddev": 38.951252, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 48.76, "sys_cpu": 15.0, "ctx": 12479, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.729488, "100": 0.048741, "250": 66.98619, "500": 30.203087, "750": 0.02437, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 11824, "read_sectors": 0, "write_sectors": 95808, "read_merges": 0, "write_merges": 152, "read_ticks": 0, "write_ticks": 2039, "in_queue": 2307, "util": 92.581239}]} 2026-04-19 19:45:38.331224 2026-04-19 19:16:23.943354 +103 2 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627950, "timestamp_ms": 1776627950029, "time": "Sun Apr 19 19:45:50 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "job_start": 1776627944734, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9539944448, "io_kbytes": 9316352, "bw_bytes": 1907607368, "bw": 1862897, "iops": 909.618076, "runtime": 5001, "total_ios": 4549, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 288749, "max": 1099974, "mean": 386889.659705, "stddev": 82751.049063, "N": 4549}, "clat_ns": {"min": 251669, "max": 4085567, "mean": 695191.58914, "stddev": 163950.530516, "N": 4549, "percentile": {"1.000000": 468992, "5.000000": 536576, "10.000000": 569344, "20.000000": 602112, "30.000000": 626688, "40.000000": 651264, "50.000000": 675840, "60.000000": 700416, "70.000000": 724992, "80.000000": 765952, "90.000000": 831488, "95.000000": 888832, "99.000000": 1073152, "99.500000": 1466368, "99.900000": 2768896, "99.950000": 2965504, "99.990000": 4079616}}, "lat_ns": {"min": 805966, "max": 4594054, "mean": 1082081.248846, "stddev": 186374.305968, "N": 4549}, "bw_min": 1814761, "bw_max": 1896296, "bw_agg": 100.0, "bw_mean": 1864036.4, "bw_dev": 31914.535909, "bw_samples": 5, "iops_min": 886, "iops_max": 925, "iops_mean": 909.4, "iops_stddev": 15.05988, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 37.92, "sys_cpu": 6.62, "ctx": 4640, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 2.242251, "750": 73.554627, "1000": 22.532425}, "latency_ms": {"2": 1.38492, "4": 0.241811, "10": 0.043966, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8717, "read_sectors": 0, "write_sectors": 17846568, "read_merges": 0, "write_merges": 34, "read_ticks": 0, "write_ticks": 5743, "in_queue": 5743, "util": 88.2677}]} 2026-04-19 19:45:44.332977 2026-04-19 19:16:23.943354 +104 2 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776627990, "timestamp_ms": 1776627990432, "time": "Sun Apr 19 19:46:30 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "job_start": 1776627985203, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 17100177408, "io_kbytes": 16699392, "bw_bytes": 3419351611, "bw": 3339210, "iops": 1630.473905, "runtime": 5001, "total_ios": 8154, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 264998, "max": 5592868, "mean": 329916.814079, "stddev": 96422.868321, "N": 8154}, "clat_ns": {"min": 22410, "max": 3595780, "mean": 269072.037037, "stddev": 87459.364041, "N": 8154, "percentile": {"1.000000": 25728, "5.000000": 175104, "10.000000": 201728, "20.000000": 224256, "30.000000": 236544, "40.000000": 248832, "50.000000": 261120, "60.000000": 272384, "70.000000": 288768, "80.000000": 309248, "90.000000": 350208, "95.000000": 403456, "99.000000": 514048, "99.500000": 561152, "99.900000": 675840, "99.950000": 790528, "99.990000": 3588096}}, "lat_ns": {"min": 453008, "max": 5646038, "mean": 598988.851116, "stddev": 110366.341056, "N": 8154}, "bw_min": 3270656, "bw_max": 3397632, "bw_agg": 100.0, "bw_mean": 3340556.8, "bw_dev": 55703.689673, "bw_samples": 5, "iops_min": 1596, "iops_max": 1659, "iops_mean": 1630.8, "iops_stddev": 27.362383, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.92, "sys_cpu": 66.86, "ctx": 7662, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.317881, "100": 0.024528, "250": 38.619083, "500": 57.652686, "750": 1.299975, "1000": 0.06132}, "latency_ms": {"2": 0.012264, "4": 0.012264, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 16230, "write_ios": 2, "read_sectors": 33239040, "write_sectors": 16, "read_merges": 8115, "write_merges": 0, "read_ticks": 5071, "write_ticks": 0, "in_queue": 5072, "util": 80.445496}]} 2026-04-19 19:45:52.72918 2026-04-19 19:16:23.943354 +105 2 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628005, "timestamp_ms": 1776628005252, "time": "Sun Apr 19 19:46:45 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "job_start": 1776628000058, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15751708672, "io_kbytes": 15382528, "bw_bytes": 3149711792, "bw": 3075890, "iops": 1501.89962, "runtime": 5001, "total_ios": 7511, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 300438, "max": 6977544, "mean": 389530.519372, "stddev": 118965.553642, "N": 7511}, "clat_ns": {"min": 24010, "max": 1343103, "mean": 260383.029956, "stddev": 75010.056761, "N": 7511, "percentile": {"1.000000": 25472, "5.000000": 29824, "10.000000": 205824, "20.000000": 236544, "30.000000": 248832, "40.000000": 257024, "50.000000": 268288, "60.000000": 276480, "70.000000": 288768, "80.000000": 301056, "90.000000": 321536, "95.000000": 346112, "99.000000": 411648, "99.500000": 440320, "99.900000": 561152, "99.950000": 897024, "99.990000": 1335296}}, "lat_ns": {"min": 469298, "max": 7282902, "mean": 649913.549328, "stddev": 124815.887023, "N": 7511}, "bw_min": 3006464, "bw_max": 3153920, "bw_agg": 100.0, "bw_mean": 3076525.2, "bw_dev": 63746.998543, "bw_samples": 5, "iops_min": 1468, "iops_max": 1540, "iops_mean": 1501.8, "iops_stddev": 31.035464, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 20.1, "sys_cpu": 57.72, "ctx": 6641, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.698309, "100": 0.039941, "250": 26.001864, "500": 68.086806, "750": 0.119824, "1000": 0.013314}, "latency_ms": {"2": 0.039941, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 14830, "write_ios": 9, "read_sectors": 30371840, "write_sectors": 152, "read_merges": 7415, "write_merges": 10, "read_ticks": 5487, "write_ticks": 4, "in_queue": 5491, "util": 88.688232}]} 2026-04-19 19:46:30.540797 2026-04-19 19:16:23.943354 +106 2 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628011, "timestamp_ms": 1776628011071, "time": "Sun Apr 19 19:46:51 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "job_start": 1776628005776, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8969519104, "io_kbytes": 8759296, "bw_bytes": 1793545111, "bw": 1751508, "iops": 855.228954, "runtime": 5001, "total_ios": 4277, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 339418, "max": 11763477, "mean": 490860.969839, "stddev": 218196.111261, "N": 4277}, "clat_ns": {"min": 39700, "max": 10392013, "mean": 658213.929156, "stddev": 290785.243205, "N": 4277, "percentile": {"1.000000": 337920, "5.000000": 415744, "10.000000": 452608, "20.000000": 505856, "30.000000": 536576, "40.000000": 569344, "50.000000": 602112, "60.000000": 634880, "70.000000": 675840, "80.000000": 749568, "90.000000": 937984, "95.000000": 1105920, "99.000000": 1613824, "99.500000": 2007040, "99.900000": 3096576, "99.950000": 3686400, "99.990000": 10420224}}, "lat_ns": {"min": 718946, "max": 12490573, "mean": 1149074.898995, "stddev": 374399.345812, "N": 4277}, "bw_min": 1471040, "bw_max": 1921024, "bw_agg": 100.0, "bw_mean": 1752291.0, "bw_dev": 170703.912647, "bw_samples": 5, "iops_min": 718, "iops_max": 938, "iops_mean": 855.2, "iops_stddev": 83.301861, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.36, "sys_cpu": 45.42, "ctx": 4463, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.070143, "100": 0.0, "250": 0.163666, "500": 18.751461, "750": 61.4917, "1000": 11.526771}, "latency_ms": {"2": 7.48188, "4": 0.490998, "10": 0.0, "20": 0.023381, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8179, "read_sectors": 0, "write_sectors": 16748688, "read_merges": 0, "write_merges": 4107, "read_ticks": 0, "write_ticks": 5138, "in_queue": 5138, "util": 87.23491}]} 2026-04-19 19:46:45.366106 2026-04-19 19:16:23.943354 +107 2 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628019, "timestamp_ms": 1776628019177, "time": "Sun Apr 19 19:46:59 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "job_start": 1776628013934, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11966349312, "io_kbytes": 11685888, "bw_bytes": 2392312937, "bw": 2336243, "iops": 570.371851, "runtime": 5002, "total_ios": 2853, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 540417, "max": 2003489, "mean": 762837.798107, "stddev": 175919.027536, "N": 2853}, "clat_ns": {"min": 32500, "max": 12699672, "mean": 970575.425868, "stddev": 405113.6813, "N": 2853, "percentile": {"1.000000": 667648, "5.000000": 741376, "10.000000": 765952, "20.000000": 806912, "30.000000": 847872, "40.000000": 880640, "50.000000": 921600, "60.000000": 954368, "70.000000": 1003520, "80.000000": 1056768, "90.000000": 1171456, "95.000000": 1286144, "99.000000": 1810432, "99.500000": 2473984, "99.900000": 7241728, "99.950000": 11337728, "99.990000": 12648448}}, "lat_ns": {"min": 1232164, "max": 13528038, "mean": 1733413.223975, "stddev": 450601.88959, "N": 2853}, "bw_min": 2316019, "bw_max": 2361657, "bw_agg": 100.0, "bw_mean": 2336374.4, "bw_dev": 23271.704317, "bw_samples": 5, "iops_min": 565, "iops_max": 576, "iops_mean": 570.0, "iops_stddev": 5.522681, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 7.756897, "sys_cpu": 42.263095, "ctx": 3084, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.035051, "100": 0.0, "250": 0.0, "500": 0.070102, "750": 6.764809, "1000": 62.460568}, "latency_ms": {"2": 29.7932, "4": 0.630915, "10": 0.175254, "20": 0.070102, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 14237, "read_sectors": 0, "write_sectors": 23322896, "read_merges": 0, "write_merges": 33, "read_ticks": 0, "write_ticks": 18807, "in_queue": 19639, "util": 97.7934}]} 2026-04-19 19:46:53.460657 2026-04-19 19:16:23.943354 +108 2 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628054, "timestamp_ms": 1776628054482, "time": "Sun Apr 19 19:47:34 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "job_start": 1776628049368, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 24087887872, "io_kbytes": 23523328, "bw_bytes": 4817577574, "bw": 4704665, "iops": 1148.6, "runtime": 5000, "total_ios": 5743, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 446177, "max": 9943318, "mean": 595449.810378, "stddev": 148006.6557, "N": 5743}, "clat_ns": {"min": 22980, "max": 949785, "mean": 260838.844332, "stddev": 77578.594294, "N": 5743, "percentile": {"1.000000": 24448, "5.000000": 121344, "10.000000": 185344, "20.000000": 224256, "30.000000": 238592, "40.000000": 252928, "50.000000": 268288, "60.000000": 284672, "70.000000": 296960, "80.000000": 309248, "90.000000": 329728, "95.000000": 350208, "99.000000": 456704, "99.500000": 518144, "99.900000": 667648, "99.950000": 741376, "99.990000": 946176}}, "lat_ns": {"min": 661727, "max": 9989858, "mean": 856288.65471, "stddev": 149394.578813, "N": 5743}, "bw_min": 4645413, "bw_max": 4771840, "bw_agg": 100.0, "bw_mean": 4705597.2, "bw_dev": 45045.778156, "bw_samples": 5, "iops_min": 1134, "iops_max": 1165, "iops_mean": 1148.6, "iops_stddev": 11.081516, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.98, "sys_cpu": 83.48, "ctx": 4518, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 4.596901, "100": 0.0, "250": 33.954379, "500": 60.769633, "750": 0.644263, "1000": 0.034825}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 22312, "write_ios": 12, "read_sectors": 45694976, "write_sectors": 264, "read_merges": 0, "write_merges": 21, "read_ticks": 10788, "write_ticks": 6, "in_queue": 10794, "util": 92.64795}]} 2026-04-19 19:47:10.265461 2026-04-19 19:16:23.943354 +239 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:39:06' --until '2026-04-19 20:39:40' 0 Systemd errors records 2026-04-19 20:39:06.022792 2026-04-19 20:39:40.59023 +240 5 loader /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:39:48.json {"results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboUIg9el as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18167519569396973, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15853261947631836, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accK0TBxe as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 44769\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17183375358581543, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.16004323959350586, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 36703\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36559\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 45323\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.21931958198547363, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.047716379165649414, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.054398298263549805, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09294652938842773, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04743075370788574, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12780141830444336, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13065600395202637, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.05473899841308594, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1550142765045166, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04780268669128418, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15845823287963867, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04880404472351074, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.0469057559967041, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04876303672790527, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15232515335083008, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15484237670898438, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.30336594581604004, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1598598957061768, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.174603223800659, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:34: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:30: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.218027114868164, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17568016052246094, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binCOc3yh as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16898560523986816, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09426355361938477, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binnP58jT as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16992783546447754, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binnmpBGW as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 any TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 any TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 any SCTP\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 loop SCTP\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 any TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 any TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv6 any SCTP\\nbind04.c:149: TPASS: Communication successful\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.618901252746582, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binYEHsnX as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20998859405517578, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 12.553611516952515, "passed": 86, "failed": 0, "broken": 1, "skipped": 1480, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:39:48.247972 2026-04-19 19:16:23.943354 +109 2 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628069, "timestamp_ms": 1776628069277, "time": "Sun Apr 19 19:47:49 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "job_start": 1776628064022, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 22351446016, "io_kbytes": 21827584, "bw_bytes": 4469395324, "bw": 4364643, "iops": 1065.586883, "runtime": 5001, "total_ios": 5329, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 420188, "max": 9412302, "mean": 605824.974667, "stddev": 154844.537873, "N": 5329}, "clat_ns": {"min": 23380, "max": 4827985, "mean": 316310.685494, "stddev": 139339.788464, "N": 5329, "percentile": {"1.000000": 25472, "5.000000": 148480, "10.000000": 189440, "20.000000": 230400, "30.000000": 254976, "40.000000": 280576, "50.000000": 305152, "60.000000": 329728, "70.000000": 362496, "80.000000": 399360, "90.000000": 460800, "95.000000": 509952, "99.000000": 610304, "99.500000": 684032, "99.900000": 1499136, "99.950000": 1859584, "99.990000": 4816896}}, "lat_ns": {"min": 658786, "max": 9719740, "mean": 922135.660161, "stddev": 180199.708684, "N": 5329}, "bw_min": 4296704, "bw_max": 4431872, "bw_agg": 100.0, "bw_mean": 4366438.4, "bw_dev": 59834.233757, "bw_samples": 5, "iops_min": 1049, "iops_max": 1082, "iops_mean": 1066.2, "iops_stddev": 14.377065, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.32, "sys_cpu": 79.8, "ctx": 4929, "majf": 0, "minf": 1070, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.908613, "100": 0.018765, "250": 25.089135, "500": 66.185025, "750": 5.423156, "1000": 0.112591}, "latency_ms": {"2": 0.225183, "4": 0.018765, "10": 0.018765, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26645, "write_ios": 6, "read_sectors": 43655168, "write_sectors": 136, "read_merges": 0, "write_merges": 11, "read_ticks": 14014, "write_ticks": 2, "in_queue": 14017, "util": 88.08402}]} 2026-04-19 19:47:34.587135 2026-04-19 19:16:23.943354 +110 2 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628075, "timestamp_ms": 1776628075082, "time": "Sun Apr 19 19:47:55 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "job_start": 1776628069801, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260419-194202Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10599006208, "io_kbytes": 10350592, "bw_bytes": 2118953660, "bw": 2069290, "iops": 505.197921, "runtime": 5002, "total_ios": 2527, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 644617, "max": 1998129, "mean": 936716.1852, "stddev": 182156.634525, "N": 2527}, "clat_ns": {"min": 418228, "max": 35145962, "mean": 1021834.764543, "stddev": 722193.152385, "N": 2527, "percentile": {"1.000000": 675840, "5.000000": 757760, "10.000000": 806912, "20.000000": 856064, "30.000000": 897024, "40.000000": 929792, "50.000000": 970752, "60.000000": 1011712, "70.000000": 1056768, "80.000000": 1122304, "90.000000": 1220608, "95.000000": 1302528, "99.000000": 1875968, "99.500000": 2736128, "99.900000": 3719168, "99.950000": 3883008, "99.990000": 35389440}}, "lat_ns": {"min": 1380073, "max": 36124646, "mean": 1958550.949743, "stddev": 757490.042192, "N": 2527}, "bw_min": 2011136, "bw_max": 2119751, "bw_agg": 100.0, "bw_mean": 2069749.6, "bw_dev": 50538.196192, "bw_samples": 5, "iops_min": 491, "iops_max": 517, "iops_mean": 505.0, "iops_stddev": 12.083046, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 2.359528, "sys_cpu": 49.290142, "ctx": 2798, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.118718, "750": 4.39256, "1000": 52.117135}, "latency_ms": {"2": 42.540562, "4": 0.791452, "10": 0.0, "20": 0.0, "50": 0.039573, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 14594, "read_sectors": 0, "write_sectors": 19925272, "read_merges": 0, "write_merges": 2449, "read_ticks": 0, "write_ticks": 17848, "in_queue": 17849, "util": 87.109933}]} 2026-04-19 19:47:49.383032 2026-04-19 19:16:23.943354 +111 2 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628084, "timestamp_ms": 1776628084084, "time": "Sun Apr 19 19:48:04 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "job_start": 1776628078792, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9321984, "io_kbytes": 9103, "bw_bytes": 1864023, "bw": 1820, "iops": 3640.671866, "runtime": 5001, "total_ios": 18207, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 64079, "max": 810956, "mean": 129311.341078, "stddev": 86396.796925, "N": 18207}, "clat_ns": {"min": 22340, "max": 686126, "mean": 131845.026693, "stddev": 61909.928259, "N": 18207, "percentile": {"1.000000": 23424, "5.000000": 24192, "10.000000": 25472, "20.000000": 107008, "30.000000": 123392, "40.000000": 130560, "50.000000": 136192, "60.000000": 142336, "70.000000": 156672, "80.000000": 175104, "90.000000": 201728, "95.000000": 224256, "99.000000": 288768, "99.500000": 309248, "99.900000": 346112, "99.950000": 374784, "99.990000": 536576}}, "lat_ns": {"min": 170909, "max": 854726, "mean": 261156.367771, "stddev": 56868.502337, "N": 18207}, "bw_min": 1786, "bw_max": 1836, "bw_agg": 99.981599, "bw_mean": 1820.8, "bw_dev": 20.029978, "bw_samples": 5, "iops_min": 3572, "iops_max": 3673, "iops_mean": 3642.0, "iops_stddev": 40.31749, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 58.62, "sys_cpu": 8.24, "ctx": 18215, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 19.201406, "100": 0.560224, "250": 77.706377, "500": 2.521008, "750": 0.010985, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 17411, "read_sectors": 0, "write_sectors": 32944, "read_merges": 0, "write_merges": 2213, "read_ticks": 0, "write_ticks": 2276, "in_queue": 2284, "util": 95.617448}]} 2026-04-19 19:47:58.388604 2026-04-19 19:16:23.943354 +112 2 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628158, "timestamp_ms": 1776628158634, "time": "Sun Apr 19 19:49:18 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "job_start": 1776628153419, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14471680, "io_kbytes": 14132, "bw_bytes": 2893757, "bw": 2825, "iops": 5651.869626, "runtime": 5001, "total_ios": 28265, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 49900, "max": 543147, "mean": 77519.107447, "stddev": 35830.944656, "N": 28265}, "clat_ns": {"min": 19309, "max": 5821119, "mean": 89188.128569, "stddev": 47381.732046, "N": 28265, "percentile": {"1.000000": 20864, "5.000000": 21632, "10.000000": 22656, "20.000000": 63232, "30.000000": 92672, "40.000000": 94720, "50.000000": 96768, "60.000000": 99840, "70.000000": 103936, "80.000000": 108032, "90.000000": 115200, "95.000000": 132096, "99.000000": 162816, "99.500000": 175104, "99.900000": 203776, "99.950000": 216064, "99.990000": 577536}}, "lat_ns": {"min": 95640, "max": 5967008, "mean": 166707.236016, "stddev": 42674.000325, "N": 28265}, "bw_min": 2744, "bw_max": 2896, "bw_agg": 99.966929, "bw_mean": 2825.8, "bw_dev": 66.262357, "bw_samples": 5, "iops_min": 5488, "iops_max": 5790, "iops_mean": 5652.2, "iops_stddev": 132.33178, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 77.6, "sys_cpu": 3.02, "ctx": 20347, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01769, "50": 13.773218, "100": 46.852998, "250": 39.331328, "500": 0.014152, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 28041, "write_ios": 1, "read_sectors": 28041, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2852, "write_ticks": 0, "in_queue": 2852, "util": 97.250247}]} 2026-04-19 19:48:04.1891 2026-04-19 19:16:23.943354 +113 2 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628239, "timestamp_ms": 1776628239188, "time": "Sun Apr 19 19:50:39 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "job_start": 1776628233986, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13815296, "io_kbytes": 13491, "bw_bytes": 2762506, "bw": 2697, "iops": 5395.520896, "runtime": 5001, "total_ios": 26983, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 49790, "max": 805905, "mean": 80678.304154, "stddev": 37178.727815, "N": 26983}, "clat_ns": {"min": 19540, "max": 1055724, "mean": 92328.269651, "stddev": 35505.054838, "N": 26983, "percentile": {"1.000000": 20864, "5.000000": 21632, "10.000000": 22656, "20.000000": 72192, "30.000000": 93696, "40.000000": 95744, "50.000000": 97792, "60.000000": 100864, "70.000000": 104960, "80.000000": 114176, "90.000000": 123392, "95.000000": 138240, "99.000000": 171008, "99.500000": 183296, "99.900000": 236544, "99.950000": 264192, "99.990000": 536576}}, "lat_ns": {"min": 96250, "max": 1175923, "mean": 173006.573806, "stddev": 27241.923827, "N": 26983}, "bw_min": 2648, "bw_max": 2765, "bw_agg": 100.0, "bw_mean": 2698.4, "bw_dev": 47.898852, "bw_samples": 5, "iops_min": 5293, "iops_max": 5530, "iops_mean": 5396.8, "iops_stddev": 96.515284, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 76.74, "sys_cpu": 3.12, "ctx": 20534, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.011118, "50": 14.961272, "100": 43.679354, "250": 41.274136, "500": 0.063003, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26721, "write_ios": 1, "read_sectors": 26721, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2831, "write_ticks": 0, "in_queue": 2831, "util": 97.52279}]} 2026-04-19 19:49:18.741377 2026-04-19 19:16:23.943354 +114 2 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628245, "timestamp_ms": 1776628245233, "time": "Sun Apr 19 19:50:45 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "job_start": 1776628239696, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7627264, "io_kbytes": 7448, "bw_bytes": 1525147, "bw": 1489, "iops": 2978.804239, "runtime": 5001, "total_ios": 14897, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 72629, "max": 2048577, "mean": 294189.924616, "stddev": 47618.721214, "N": 14897}, "clat_ns": {"min": 21540, "max": 561517, "mean": 26974.230046, "stddev": 23269.186894, "N": 14897, "percentile": {"1.000000": 22144, "5.000000": 22400, "10.000000": 22400, "20.000000": 22656, "30.000000": 22656, "40.000000": 22912, "50.000000": 22912, "60.000000": 23168, "70.000000": 23680, "80.000000": 24192, "90.000000": 26240, "95.000000": 33536, "99.000000": 148480, "99.500000": 171008, "99.900000": 342016, "99.950000": 358400, "99.990000": 395264}}, "lat_ns": {"min": 202599, "max": 2085407, "mean": 321164.154662, "stddev": 40507.237341, "N": 14897}, "bw_min": 1445, "bw_max": 1573, "bw_agg": 99.973052, "bw_mean": 1489.6, "bw_dev": 48.598354, "bw_samples": 5, "iops_min": 2891, "iops_max": 3146, "iops_mean": 2979.6, "iops_stddev": 96.90098, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 13.28, "sys_cpu": 62.64, "ctx": 14899, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 97.892193, "100": 0.114117, "250": 1.731892, "500": 0.255085, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 14230, "read_sectors": 0, "write_sectors": 113317, "read_merges": 0, "write_merges": 24539, "read_ticks": 0, "write_ticks": 2182, "in_queue": 2501, "util": 83.446015}]} 2026-04-19 19:50:39.291128 2026-04-19 19:16:23.943354 +115 2 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628251, "timestamp_ms": 1776628251034, "time": "Sun Apr 19 19:50:51 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "job_start": 1776628245735, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 63225856, "io_kbytes": 61744, "bw_bytes": 12642642, "bw": 12346, "iops": 3086.582683, "runtime": 5001, "total_ios": 15436, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 222028, "max": 5146988, "mean": 287727.070614, "stddev": 63040.485839, "N": 15436}, "clat_ns": {"min": 21209, "max": 602906, "mean": 23758.456789, "stddev": 5841.177752, "N": 15436, "percentile": {"1.000000": 21632, "5.000000": 22144, "10.000000": 22144, "20.000000": 22400, "30.000000": 22400, "40.000000": 22656, "50.000000": 22656, "60.000000": 22912, "70.000000": 23168, "80.000000": 23936, "90.000000": 25728, "95.000000": 30336, "99.000000": 36096, "99.500000": 38144, "99.900000": 48384, "99.950000": 55552, "99.990000": 191488}}, "lat_ns": {"min": 243378, "max": 5181468, "mean": 311485.527403, "stddev": 64017.74975, "N": 15436}, "bw_min": 11988, "bw_max": 12652, "bw_agg": 100.0, "bw_mean": 12350.4, "bw_dev": 310.735901, "bw_samples": 5, "iops_min": 2997, "iops_max": 3163, "iops_mean": 3087.4, "iops_stddev": 77.629247, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.24, "sys_cpu": 72.9, "ctx": 15439, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 99.915781, "100": 0.064784, "250": 0.012957, "500": 0.0, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 14792, "read_sectors": 0, "write_sectors": 222287, "read_merges": 0, "write_merges": 29619, "read_ticks": 0, "write_ticks": 2605, "in_queue": 2775, "util": 83.544563}]} 2026-04-19 19:50:45.338321 2026-04-19 19:16:23.943354 +116 2 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628275, "timestamp_ms": 1776628275337, "time": "Sun Apr 19 19:51:15 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "job_start": 1776628270061, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 112422912, "io_kbytes": 109788, "bw_bytes": 22480086, "bw": 21953, "iops": 5488.30234, "runtime": 5001, "total_ios": 27447, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 50639, "max": 673576, "mean": 80157.884541, "stddev": 40164.519445, "N": 27447}, "clat_ns": {"min": 19700, "max": 625097, "mean": 91935.272161, "stddev": 32323.902489, "N": 27447, "percentile": {"1.000000": 21376, "5.000000": 22400, "10.000000": 24192, "20.000000": 87552, "30.000000": 93696, "40.000000": 94720, "50.000000": 96768, "60.000000": 99840, "70.000000": 103936, "80.000000": 109056, "90.000000": 117248, "95.000000": 136192, "99.000000": 166912, "99.500000": 181248, "99.900000": 222208, "99.950000": 268288, "99.990000": 464896}}, "lat_ns": {"min": 111729, "max": 768816, "mean": 172093.156702, "stddev": 26436.355452, "N": 27447}, "bw_min": 21514, "bw_max": 22292, "bw_agg": 100.0, "bw_mean": 21966.0, "bw_dev": 302.954617, "bw_samples": 5, "iops_min": 5378, "iops_max": 5573, "iops_mean": 5490.8, "iops_stddev": 75.984867, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 77.82, "sys_cpu": 2.16, "ctx": 21282, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 13.382155, "100": 47.571684, "250": 38.976937, "500": 0.061938, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26162, "write_ios": 1, "read_sectors": 209296, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2747, "write_ticks": 1, "in_queue": 2747, "util": 97.411136}]} 2026-04-19 19:50:51.14053 2026-04-19 19:16:23.943354 +117 2 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628298, "timestamp_ms": 1776628298885, "time": "Sun Apr 19 19:51:38 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "job_start": 1776628293794, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 109776896, "io_kbytes": 107204, "bw_bytes": 21950989, "bw": 21436, "iops": 5359.128174, "runtime": 5001, "total_ios": 26801, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51319, "max": 604157, "mean": 81531.032424, "stddev": 43228.989484, "N": 26801}, "clat_ns": {"min": 20150, "max": 3113531, "mean": 92781.55886, "stddev": 44064.606327, "N": 26801, "percentile": {"1.000000": 21632, "5.000000": 22656, "10.000000": 24192, "20.000000": 91648, "30.000000": 92672, "40.000000": 93696, "50.000000": 94720, "60.000000": 96768, "70.000000": 102912, "80.000000": 108032, "90.000000": 118272, "95.000000": 140288, "99.000000": 179200, "99.500000": 197632, "99.900000": 280576, "99.950000": 366592, "99.990000": 1499136}}, "lat_ns": {"min": 101189, "max": 3184170, "mean": 174312.591284, "stddev": 41802.906825, "N": 26801}, "bw_min": 21262, "bw_max": 21549, "bw_agg": 100.0, "bw_mean": 21443.2, "bw_dev": 109.75746, "bw_samples": 5, "iops_min": 5317, "iops_max": 5387, "iops_mean": 5360.6, "iops_stddev": 26.838405, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 71.96, "sys_cpu": 7.2, "ctx": 21584, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.421141, "100": 52.468191, "250": 33.968882, "500": 0.108205, "750": 0.011194, "1000": 0.01}, "latency_ms": {"2": 0.011194, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 25946, "write_ios": 0, "read_sectors": 207568, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2790, "write_ticks": 0, "in_queue": 2791, "util": 95.542047}]} 2026-04-19 19:51:15.441963 2026-04-19 19:16:23.943354 +118 2 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628304, "timestamp_ms": 1776628304930, "time": "Sun Apr 19 19:51:44 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "job_start": 1776628299383, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 57950208, "io_kbytes": 56592, "bw_bytes": 11587724, "bw": 11316, "iops": 2829.034193, "runtime": 5001, "total_ios": 14148, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 75690, "max": 1863639, "mean": 312728.083333, "stddev": 53976.229998, "N": 14148}, "clat_ns": {"min": 21830, "max": 867964, "mean": 25558.005018, "stddev": 11295.838445, "N": 14148, "percentile": {"1.000000": 22400, "5.000000": 22656, "10.000000": 22912, "20.000000": 23168, "30.000000": 23424, "40.000000": 23680, "50.000000": 23936, "60.000000": 24448, "70.000000": 24960, "80.000000": 25472, "90.000000": 30592, "95.000000": 34560, "99.000000": 38144, "99.500000": 44288, "99.900000": 168960, "99.950000": 232448, "99.990000": 407552}}, "lat_ns": {"min": 225239, "max": 1889549, "mean": 338286.088352, "stddev": 56278.660245, "N": 14148}, "bw_min": 10852, "bw_max": 11516, "bw_agg": 100.0, "bw_mean": 11320.4, "bw_dev": 273.635341, "bw_samples": 5, "iops_min": 2713, "iops_max": 2879, "iops_mean": 2829.4, "iops_stddev": 68.310321, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.16, "sys_cpu": 74.86, "ctx": 14130, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 99.639525, "100": 0.155499, "250": 0.162567, "500": 0.035341, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 13618, "read_sectors": 0, "write_sectors": 216903, "read_merges": 0, "write_merges": 27384, "read_ticks": 0, "write_ticks": 1862, "in_queue": 1863, "util": 59.492635}]} 2026-04-19 19:51:38.987558 2026-04-19 19:16:23.943354 +119 2 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628310, "timestamp_ms": 1776628310733, "time": "Sun Apr 19 19:51:50 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "job_start": 1776628305443, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8852078592, "io_kbytes": 8644608, "bw_bytes": 1769707835, "bw": 1728230, "iops": 843.862455, "runtime": 5002, "total_ios": 4221, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 325528, "max": 4617192, "mean": 555774.628998, "stddev": 320537.417295, "N": 4221}, "clat_ns": {"min": 23900, "max": 10933784, "mean": 610631.914949, "stddev": 357458.128528, "N": 4221, "percentile": {"1.000000": 24704, "5.000000": 25984, "10.000000": 27008, "20.000000": 561152, "30.000000": 618496, "40.000000": 651264, "50.000000": 684032, "60.000000": 708608, "70.000000": 733184, "80.000000": 774144, "90.000000": 831488, "95.000000": 897024, "99.000000": 1073152, "99.500000": 1646592, "99.900000": 3751936, "99.950000": 4423680, "99.990000": 10944512}}, "lat_ns": {"min": 857325, "max": 11414601, "mean": 1166406.543947, "stddev": 301064.723524, "N": 4221}, "bw_min": 1695744, "bw_max": 1757184, "bw_agg": 100.0, "bw_mean": 1728798.4, "bw_dev": 25484.50366, "bw_samples": 5, "iops_min": 828, "iops_max": 858, "iops_mean": 843.8, "iops_stddev": 12.498, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 16.516697, "sys_cpu": 27.974405, "ctx": 4345, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 16.370528, "100": 0.236911, "250": 0.094764, "500": 1.303009, "750": 56.479507, "1000": 23.785833}, "latency_ms": {"2": 1.445155, "4": 0.21322, "10": 0.047382, "20": 0.023691, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8770, "read_sectors": 0, "write_sectors": 16520261, "read_merges": 0, "write_merges": 746, "read_ticks": 0, "write_ticks": 6513, "in_queue": 6514, "util": 81.147876}]} 2026-04-19 19:51:45.034506 2026-04-19 19:16:23.943354 +120 2 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628326, "timestamp_ms": 1776628326354, "time": "Sun Apr 19 19:52:06 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "job_start": 1776628321187, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14950596608, "io_kbytes": 14600192, "bw_bytes": 2989521417, "bw": 2919454, "iops": 1425.514897, "runtime": 5001, "total_ios": 7129, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 236699, "max": 5243168, "mean": 282701.801936, "stddev": 77638.143357, "N": 7129}, "clat_ns": {"min": 23950, "max": 1166603, "mean": 404187.804881, "stddev": 60497.890273, "N": 7129, "percentile": {"1.000000": 280576, "5.000000": 321536, "10.000000": 337920, "20.000000": 354304, "30.000000": 366592, "40.000000": 382976, "50.000000": 395264, "60.000000": 415744, "70.000000": 436224, "80.000000": 456704, "90.000000": 485376, "95.000000": 509952, "99.000000": 561152, "99.500000": 577536, "99.900000": 634880, "99.950000": 675840, "99.990000": 1171456}}, "lat_ns": {"min": 533087, "max": 5661825, "mean": 686889.606817, "stddev": 97939.33696, "N": 7129}, "bw_min": 2887680, "bw_max": 2957312, "bw_agg": 100.0, "bw_mean": 2921207.6, "bw_dev": 26397.101892, "bw_samples": 5, "iops_min": 1410, "iops_max": 1444, "iops_mean": 1426.2, "iops_stddev": 12.872451, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 15.7, "sys_cpu": 47.2, "ctx": 7127, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.056109, "100": 0.0, "250": 0.392762, "500": 93.15472, "750": 6.368355, "1000": 0.014027}, "latency_ms": {"2": 0.014027, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 14020, "write_ios": 0, "read_sectors": 28712960, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5485, "write_ticks": 0, "in_queue": 5486, "util": 56.937512}]} 2026-04-19 19:51:53.134021 2026-04-19 19:16:23.943354 +121 2 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628341, "timestamp_ms": 1776628341154, "time": "Sun Apr 19 19:52:21 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "job_start": 1776628335893, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14248050688, "io_kbytes": 13914112, "bw_bytes": 2849040329, "bw": 2782265, "iops": 1358.528294, "runtime": 5001, "total_ios": 6794, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 316208, "max": 8173081, "mean": 406608.112011, "stddev": 139576.297117, "N": 6794}, "clat_ns": {"min": 23980, "max": 3431109, "mean": 310440.373712, "stddev": 76526.072154, "N": 6794, "percentile": {"1.000000": 28288, "5.000000": 232448, "10.000000": 246784, "20.000000": 268288, "30.000000": 284672, "40.000000": 296960, "50.000000": 309248, "60.000000": 321536, "70.000000": 333824, "80.000000": 350208, "90.000000": 370688, "95.000000": 399360, "99.000000": 481280, "99.500000": 536576, "99.900000": 929792, "99.950000": 1044480, "99.990000": 3424256}}, "lat_ns": {"min": 535947, "max": 8446019, "mean": 717048.485723, "stddev": 156688.893621, "N": 6794}, "bw_min": 2697865, "bw_max": 2880320, "bw_agg": 100.0, "bw_mean": 2783539.6, "bw_dev": 78080.67756, "bw_samples": 5, "iops_min": 1317, "iops_max": 1406, "iops_mean": 1358.8, "iops_stddev": 38.232185, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.64, "sys_cpu": 64.6, "ctx": 6537, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 1.133353, "100": 0.0, "250": 10.008831, "500": 88.107153, "750": 0.603474, "1000": 0.088313}, "latency_ms": {"2": 0.044157, "4": 0.014719, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 12951, "write_ios": 0, "read_sectors": 26445840, "write_sectors": 0, "read_merges": 6457, "write_merges": 0, "read_ticks": 5195, "write_ticks": 0, "in_queue": 5195, "util": 65.773748}]} 2026-04-19 19:52:06.455551 2026-04-19 19:16:23.943354 +241 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:40:36.138289 2026-04-19 20:40:36.138293 +122 2 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628346, "timestamp_ms": 1776628346953, "time": "Sun Apr 19 19:52:26 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "job_start": 1776628341659, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9483321344, "io_kbytes": 9261056, "bw_bytes": 1896285011, "bw": 1851840, "iops": 904.219156, "runtime": 5001, "total_ios": 4522, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 360428, "max": 9758081, "mean": 589769.100177, "stddev": 338813.702496, "N": 4522}, "clat_ns": {"min": 24530, "max": 7151927, "mean": 494893.278417, "stddev": 305655.652249, "N": 4522, "percentile": {"1.000000": 25216, "5.000000": 26240, "10.000000": 27264, "20.000000": 403456, "30.000000": 468992, "40.000000": 501760, "50.000000": 536576, "60.000000": 561152, "70.000000": 593920, "80.000000": 626688, "90.000000": 692224, "95.000000": 749568, "99.000000": 1056768, "99.500000": 1433600, "99.900000": 3686400, "99.950000": 4423680, "99.990000": 7176192}}, "lat_ns": {"min": 713566, "max": 10213078, "mean": 1084662.378594, "stddev": 317922.681623, "N": 4522}, "bw_min": 1642496, "bw_max": 1935360, "bw_agg": 100.0, "bw_mean": 1852186.0, "bw_dev": 125191.886462, "bw_samples": 5, "iops_min": 802, "iops_max": 945, "iops_mean": 904.4, "iops_stddev": 61.13755, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 19.54, "sys_cpu": 31.9, "ctx": 4670, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 15.214507, "100": 0.154799, "250": 0.508625, "500": 23.706325, "750": 55.395843, "1000": 3.825741}, "latency_ms": {"2": 0.773994, "4": 0.331712, "10": 0.088456, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 9364, "read_sectors": 0, "write_sectors": 17730887, "read_merges": 0, "write_merges": 5049, "read_ticks": 0, "write_ticks": 5889, "in_queue": 5889, "util": 60.167415}]} 2026-04-19 19:52:21.253299 2026-04-19 19:16:23.943354 +123 2 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628367, "timestamp_ms": 1776628367003, "time": "Sun Apr 19 19:52:47 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "job_start": 1776628361744, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11634999296, "io_kbytes": 11362304, "bw_bytes": 2326069431, "bw": 2271552, "iops": 554.578169, "runtime": 5002, "total_ios": 2774, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 520557, "max": 3213991, "mean": 878295.232156, "stddev": 416846.025333, "N": 2774}, "clat_ns": {"min": 25090, "max": 7134878, "mean": 905552.416006, "stddev": 417717.250904, "N": 2774, "percentile": {"1.000000": 26240, "5.000000": 28288, "10.000000": 34048, "20.000000": 782336, "30.000000": 872448, "40.000000": 929792, "50.000000": 970752, "60.000000": 1028096, "70.000000": 1089536, "80.000000": 1155072, "90.000000": 1253376, "95.000000": 1351680, "99.000000": 1581056, "99.500000": 1859584, "99.900000": 3981312, "99.950000": 4046848, "99.990000": 7110656}}, "lat_ns": {"min": 1290382, "max": 7912523, "mean": 1783847.648162, "stddev": 285559.562008, "N": 2774}, "bw_min": 2154496, "bw_max": 2341157, "bw_agg": 100.0, "bw_mean": 2273024.6, "bw_dev": 69990.198044, "bw_samples": 5, "iops_min": 526, "iops_max": 571, "iops_mean": 554.6, "iops_stddev": 16.890826, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 3.159368, "sys_cpu": 41.831634, "ctx": 2996, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 12.761355, "100": 0.108147, "250": 0.0, "500": 0.144196, "750": 5.479452, "1000": 36.157174}, "latency_ms": {"2": 44.953136, "4": 0.324441, "10": 0.072098, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 11454, "read_sectors": 0, "write_sectors": 22727059, "read_merges": 0, "write_merges": 361, "read_ticks": 0, "write_ticks": 11630, "in_queue": 11630, "util": 100.0}]} 2026-04-19 19:52:41.283572 2026-04-19 19:16:23.943354 +124 2 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628386, "timestamp_ms": 1776628386629, "time": "Sun Apr 19 19:53:06 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "job_start": 1776628381336, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 23500685312, "io_kbytes": 22949888, "bw_bytes": 4699197222, "bw": 4589059, "iops": 1120.375925, "runtime": 5001, "total_ios": 5603, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 427867, "max": 10536227, "mean": 573399.234696, "stddev": 156557.947973, "N": 5603}, "clat_ns": {"min": 23960, "max": 867795, "mean": 302899.223809, "stddev": 85583.384901, "N": 5603, "percentile": {"1.000000": 25728, "5.000000": 171008, "10.000000": 220160, "20.000000": 259072, "30.000000": 276480, "40.000000": 288768, "50.000000": 301056, "60.000000": 317440, "70.000000": 333824, "80.000000": 354304, "90.000000": 387072, "95.000000": 423936, "99.000000": 569344, "99.500000": 610304, "99.900000": 708608, "99.950000": 757760, "99.990000": 864256}}, "lat_ns": {"min": 652966, "max": 10585857, "mean": 876298.458504, "stddev": 162371.940726, "N": 5603}, "bw_min": 4402893, "bw_max": 4767744, "bw_agg": 100.0, "bw_mean": 4590042.4, "bw_dev": 155221.031124, "bw_samples": 5, "iops_min": 1074, "iops_max": 1164, "iops_mean": 1120.4, "iops_stddev": 38.141841, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.18, "sys_cpu": 77.52, "ctx": 5199, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.837765, "100": 0.107085, "250": 13.474924, "500": 81.599143, "750": 1.927539, "1000": 0.053543}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 21517, "write_ios": 0, "read_sectors": 43974656, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 10302, "write_ticks": 0, "in_queue": 10302, "util": 87.994263}]} 2026-04-19 19:52:52.648732 2026-04-19 19:16:23.943354 +125 2 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628401, "timestamp_ms": 1776628401179, "time": "Sun Apr 19 19:53:21 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "job_start": 1776628396026, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 22535995392, "io_kbytes": 22007808, "bw_bytes": 4506297818, "bw": 4400681, "iops": 1074.385123, "runtime": 5001, "total_ios": 5373, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 434278, "max": 9211824, "mean": 615546.819282, "stddev": 180149.979044, "N": 5373}, "clat_ns": {"min": 22970, "max": 10959515, "mean": 297929.1126, "stddev": 172531.160019, "N": 5373, "percentile": {"1.000000": 25216, "5.000000": 187392, "10.000000": 228352, "20.000000": 248832, "30.000000": 264192, "40.000000": 280576, "50.000000": 296960, "60.000000": 309248, "70.000000": 321536, "80.000000": 337920, "90.000000": 370688, "95.000000": 419840, "99.000000": 593920, "99.500000": 659456, "99.900000": 1044480, "99.950000": 1482752, "99.990000": 10944512}}, "lat_ns": {"min": 654216, "max": 12112338, "mean": 913475.931882, "stddev": 247703.316305, "N": 5373}, "bw_min": 4169728, "bw_max": 4481409, "bw_agg": 100.0, "bw_mean": 4401566.4, "bw_dev": 131590.997387, "bw_samples": 5, "iops_min": 1018, "iops_max": 1094, "iops_mean": 1074.4, "iops_stddev": 32.020306, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.24, "sys_cpu": 79.54, "ctx": 4729, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 3.405918, "100": 0.0, "250": 17.23432, "500": 76.958868, "750": 2.196166, "1000": 0.093058}, "latency_ms": {"2": 0.093058, "4": 0.0, "10": 0.0, "20": 0.018612, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 21090, "write_ios": 0, "read_sectors": 43130880, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 10995, "write_ticks": 0, "in_queue": 10995, "util": 92.632633}]} 2026-04-19 19:53:06.73276 2026-04-19 19:16:23.943354 +126 2 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628406, "timestamp_ms": 1776628406982, "time": "Sun Apr 19 19:53:26 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "job_start": 1776628401701, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260419-194758Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10645143552, "io_kbytes": 10395648, "bw_bytes": 2128602989, "bw": 2078713, "iops": 507.4985, "runtime": 5001, "total_ios": 2538, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 584646, "max": 26787682, "mean": 1026521.821513, "stddev": 680244.237988, "N": 2538}, "clat_ns": {"min": 25360, "max": 27320199, "mean": 921101.55595, "stddev": 769177.350371, "N": 2538, "percentile": {"1.000000": 25984, "5.000000": 27008, "10.000000": 29312, "20.000000": 815104, "30.000000": 880640, "40.000000": 921600, "50.000000": 962560, "60.000000": 1011712, "70.000000": 1056768, "80.000000": 1138688, "90.000000": 1236992, "95.000000": 1351680, "99.000000": 2277376, "99.500000": 2932736, "99.900000": 5931008, "99.950000": 18481152, "99.990000": 27394048}}, "lat_ns": {"min": 1285132, "max": 28085594, "mean": 1947623.377463, "stddev": 886973.184814, "N": 2538}, "bw_min": 2000943, "bw_max": 2168711, "bw_agg": 99.900763, "bw_mean": 2076651.2, "bw_dev": 72035.658852, "bw_samples": 5, "iops_min": 488, "iops_max": 529, "iops_mean": 506.6, "iops_stddev": 17.487138, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.06, "sys_cpu": 44.72, "ctx": 2710, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.356974, "100": 0.394011, "250": 0.039401, "500": 0.039401, "750": 2.955083, "1000": 40.780142}, "latency_ms": {"2": 41.252955, "4": 0.985028, "10": 0.118203, "20": 0.039401, "50": 0.039401, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12472, "read_sectors": 0, "write_sectors": 19861287, "read_merges": 0, "write_merges": 374, "read_ticks": 0, "write_ticks": 15908, "in_queue": 15908, "util": 88.086495}]} 2026-04-19 19:53:21.282953 2026-04-19 19:16:23.943354 +127 2 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628415, "timestamp_ms": 1776628415805, "time": "Sun Apr 19 19:53:35 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "job_start": 1776628410507, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9185792, "io_kbytes": 8970, "bw_bytes": 1836791, "bw": 1793, "iops": 3587.482503, "runtime": 5001, "total_ios": 17941, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 64549, "max": 784756, "mean": 126235.42885, "stddev": 85709.734671, "N": 17941}, "clat_ns": {"min": 22500, "max": 614937, "mean": 139345.146536, "stddev": 62302.083265, "N": 17941, "percentile": {"1.000000": 23424, "5.000000": 24448, "10.000000": 25728, "20.000000": 121344, "30.000000": 129536, "40.000000": 136192, "50.000000": 140288, "60.000000": 148480, "70.000000": 164864, "80.000000": 183296, "90.000000": 205824, "95.000000": 230400, "99.000000": 296960, "99.500000": 325632, "99.900000": 382976, "99.950000": 423936, "99.990000": 552960}}, "lat_ns": {"min": 172939, "max": 828815, "mean": 265580.575386, "stddev": 57944.045379, "N": 17941}, "bw_min": 1778, "bw_max": 1811, "bw_agg": 100.0, "bw_mean": 1794.0, "bw_dev": 13.910428, "bw_samples": 5, "iops_min": 3556, "iops_max": 3623, "iops_mean": 3588.6, "iops_stddev": 28.218788, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 55.08, "sys_cpu": 10.52, "ctx": 17952, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 16.609999, "100": 0.535087, "250": 79.677833, "500": 3.160359, "750": 0.016721, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 17191, "read_sectors": 0, "write_sectors": 32511, "read_merges": 0, "write_merges": 2182, "read_ticks": 0, "write_ticks": 6339, "in_queue": 7361, "util": 97.095521}]} 2026-04-19 19:53:30.109897 2026-04-19 19:16:23.943354 +128 2 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628492, "timestamp_ms": 1776628492102, "time": "Sun Apr 19 19:54:52 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "job_start": 1776628486881, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13787648, "io_kbytes": 13464, "bw_bytes": 2756978, "bw": 2692, "iops": 5384.723055, "runtime": 5001, "total_ios": 26929, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 53480, "max": 611787, "mean": 81186.759107, "stddev": 37400.545554, "N": 26929}, "clat_ns": {"min": 19720, "max": 2340726, "mean": 94269.641762, "stddev": 37608.529082, "N": 26929, "percentile": {"1.000000": 20608, "5.000000": 21376, "10.000000": 22400, "20.000000": 89600, "30.000000": 94720, "40.000000": 96768, "50.000000": 99840, "60.000000": 102912, "70.000000": 107008, "80.000000": 113152, "90.000000": 124416, "95.000000": 142336, "99.000000": 173056, "99.500000": 189440, "99.900000": 234496, "99.950000": 250880, "99.990000": 456704}}, "lat_ns": {"min": 115239, "max": 2460425, "mean": 175456.400869, "stddev": 29216.144844, "N": 26929}, "bw_min": 2653, "bw_max": 2739, "bw_agg": 99.98658, "bw_mean": 2692.8, "bw_dev": 39.181628, "bw_samples": 5, "iops_min": 5307, "iops_max": 5478, "iops_mean": 5386.2, "iops_stddev": 77.438363, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 76.8, "sys_cpu": 2.86, "ctx": 20859, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01114, "50": 13.966356, "100": 37.613725, "250": 48.353077, "500": 0.048275, "750": 0.0, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 26751, "write_ios": 0, "read_sectors": 26751, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2872, "write_ticks": 0, "in_queue": 2872, "util": 97.590361}]} 2026-04-19 19:53:35.906051 2026-04-19 19:16:23.943354 +129 2 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628572, "timestamp_ms": 1776628572764, "time": "Sun Apr 19 19:56:12 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "job_start": 1776628567630, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 10572288, "io_kbytes": 10324, "bw_bytes": 2114034, "bw": 2064, "iops": 4128.974205, "runtime": 5001, "total_ios": 20649, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 52769, "max": 3540210, "mean": 100381.459102, "stddev": 97543.403001, "N": 20649}, "clat_ns": {"min": 20450, "max": 9319655, "mean": 125674.126592, "stddev": 152657.40265, "N": 20649, "percentile": {"1.000000": 21632, "5.000000": 23168, "10.000000": 25984, "20.000000": 92672, "30.000000": 96768, "40.000000": 99840, "50.000000": 104960, "60.000000": 112128, "70.000000": 124416, "80.000000": 140288, "90.000000": 177152, "95.000000": 240640, "99.000000": 618496, "99.500000": 856064, "99.900000": 1843200, "99.950000": 2768896, "99.990000": 4489216}}, "lat_ns": {"min": 104440, "max": 9517754, "mean": 226055.585694, "stddev": 199018.029814, "N": 20649}, "bw_min": 1724, "bw_max": 2589, "bw_agg": 99.976443, "bw_mean": 2064.8, "bw_dev": 375.741534, "bw_samples": 5, "iops_min": 3448, "iops_max": 5175, "iops_mean": 4129.4, "iops_stddev": 750.538673, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 67.8, "sys_cpu": 11.22, "ctx": 15845, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 13.027265, "100": 26.064216, "250": 56.28844, "500": 3.104267, "750": 0.823284, "1000": 0.334157}, "latency_ms": {"2": 0.295414, "4": 0.038743, "10": 0.024214, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 20035, "write_ios": 2, "read_sectors": 20036, "write_sectors": 16, "read_merges": 0, "write_merges": 0, "read_ticks": 2818, "write_ticks": 1, "in_queue": 2818, "util": 92.389558}]} 2026-04-19 19:54:52.207281 2026-04-19 19:16:23.943354 +130 2 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628578, "timestamp_ms": 1776628578892, "time": "Sun Apr 19 19:56:18 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "job_start": 1776628573391, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6368768, "io_kbytes": 6219, "bw_bytes": 1273498, "bw": 1243, "iops": 2487.302539, "runtime": 5001, "total_ios": 12439, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 74250, "max": 6735461, "mean": 354548.066082, "stddev": 238749.40905, "N": 12439}, "clat_ns": {"min": 21290, "max": 1466911, "mean": 30714.365222, "stddev": 38235.561556, "N": 12439, "percentile": {"1.000000": 22144, "5.000000": 22656, "10.000000": 22912, "20.000000": 23168, "30.000000": 23424, "40.000000": 23936, "50.000000": 24448, "60.000000": 24960, "70.000000": 25728, "80.000000": 27520, "90.000000": 34560, "95.000000": 39168, "99.000000": 183296, "99.500000": 276480, "99.900000": 505856, "99.950000": 692224, "99.990000": 905216}}, "lat_ns": {"min": 203389, "max": 6844941, "mean": 385262.431305, "stddev": 248614.177588, "N": 12439}, "bw_min": 1028, "bw_max": 1428, "bw_agg": 99.947703, "bw_mean": 1243.6, "bw_dev": 171.546787, "bw_samples": 5, "iops_min": 2056, "iops_max": 2856, "iops_mean": 2487.8, "iops_stddev": 343.139476, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.1, "sys_cpu": 63.28, "ctx": 12440, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 96.792347, "100": 1.125492, "250": 1.487258, "500": 0.490393, "750": 0.072353, "1000": 0.024118}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12444, "read_sectors": 0, "write_sectors": 99494, "read_merges": 0, "write_merges": 21567, "read_ticks": 0, "write_ticks": 2207, "in_queue": 2446, "util": 83.362762}]} 2026-04-19 19:56:12.895453 2026-04-19 19:16:23.943354 +131 2 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628584, "timestamp_ms": 1776628584696, "time": "Sun Apr 19 19:56:24 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "job_start": 1776628579400, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 53460992, "io_kbytes": 52208, "bw_bytes": 10690060, "bw": 10439, "iops": 2609.878024, "runtime": 5001, "total_ios": 13052, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 101199, "max": 692196, "mean": 140146.543212, "stddev": 58569.701211, "N": 13052}, "clat_ns": {"min": 24639, "max": 1500962, "mean": 227794.790454, "stddev": 69552.422719, "N": 13052, "percentile": {"1.000000": 33024, "5.000000": 166912, "10.000000": 173056, "20.000000": 181248, "30.000000": 189440, "40.000000": 201728, "50.000000": 218112, "60.000000": 234496, "70.000000": 248832, "80.000000": 272384, "90.000000": 309248, "95.000000": 342016, "99.000000": 415744, "99.500000": 460800, "99.900000": 724992, "99.950000": 1019904, "99.990000": 1335296}}, "lat_ns": {"min": 260838, "max": 1676171, "mean": 367941.333665, "stddev": 75425.986806, "N": 13052}, "bw_min": 9916, "bw_max": 10704, "bw_agg": 100.0, "bw_mean": 10443.6, "bw_dev": 314.643926, "bw_samples": 5, "iops_min": 2479, "iops_max": 2676, "iops_mean": 2610.6, "iops_stddev": 78.630783, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 51.92, "sys_cpu": 10.7, "ctx": 13165, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.49004, "100": 0.114925, "250": 68.441618, "500": 28.639289, "750": 0.222188, "1000": 0.038308}, "latency_ms": {"2": 0.053632, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12498, "read_sectors": 0, "write_sectors": 100264, "read_merges": 0, "write_merges": 35, "read_ticks": 0, "write_ticks": 2027, "in_queue": 2177, "util": 96.646902}]} 2026-04-19 19:56:18.997316 2026-04-19 19:16:23.943354 +132 2 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628608, "timestamp_ms": 1776628608498, "time": "Sun Apr 19 19:56:48 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "job_start": 1776628603266, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 111763456, "io_kbytes": 109144, "bw_bytes": 22348221, "bw": 21824, "iops": 5456.108778, "runtime": 5001, "total_ios": 27286, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51619, "max": 658447, "mean": 80338.872169, "stddev": 36918.867729, "N": 27286}, "clat_ns": {"min": 19780, "max": 10141393, "mean": 92726.65081, "stddev": 70952.143571, "N": 27286, "percentile": {"1.000000": 20608, "5.000000": 21120, "10.000000": 22144, "20.000000": 90624, "30.000000": 92672, "40.000000": 94720, "50.000000": 96768, "60.000000": 98816, "70.000000": 102912, "80.000000": 114176, "90.000000": 124416, "95.000000": 136192, "99.000000": 166912, "99.500000": 179200, "99.900000": 232448, "99.950000": 272384, "99.990000": 1187840}}, "lat_ns": {"min": 113789, "max": 10254832, "mean": 173065.522979, "stddev": 66967.588473, "N": 27286}, "bw_min": 21280, "bw_max": 22360, "bw_agg": 100.0, "bw_mean": 21833.2, "bw_dev": 401.436421, "bw_samples": 5, "iops_min": 5320, "iops_max": 5589, "iops_mean": 5458.2, "iops_stddev": 99.938481, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 76.96, "sys_cpu": 2.2, "ctx": 21374, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.018324, "50": 14.271055, "100": 49.021476, "250": 36.615847, "500": 0.054973, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.010995, "4": 0.0, "10": 0.0, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 27157, "write_ios": 1, "read_sectors": 217256, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2886, "write_ticks": 0, "in_queue": 2887, "util": 97.476838}]} 2026-04-19 19:56:24.797228 2026-04-19 19:16:23.943354 +133 2 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628632, "timestamp_ms": 1776628632058, "time": "Sun Apr 19 19:57:12 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "job_start": 1776628626832, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 112648192, "io_kbytes": 110008, "bw_bytes": 22525133, "bw": 21997, "iops": 5499.30014, "runtime": 5001, "total_ios": 27502, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 50449, "max": 614907, "mean": 80729.831794, "stddev": 37833.517989, "N": 27502}, "clat_ns": {"min": 19310, "max": 428968, "mean": 88727.49411, "stddev": 33261.650916, "N": 27502, "percentile": {"1.000000": 20864, "5.000000": 21888, "10.000000": 23168, "20.000000": 60160, "30.000000": 92672, "40.000000": 94720, "50.000000": 96768, "60.000000": 99840, "70.000000": 104960, "80.000000": 110080, "90.000000": 118272, "95.000000": 132096, "99.000000": 160768, "99.500000": 173056, "99.900000": 207872, "99.950000": 224256, "99.990000": 264192}}, "lat_ns": {"min": 96859, "max": 659837, "mean": 169457.325904, "stddev": 26230.550863, "N": 27502}, "bw_min": 20935, "bw_max": 23380, "bw_agg": 100.0, "bw_mean": 22006.0, "bw_dev": 969.857979, "bw_samples": 5, "iops_min": 5233, "iops_max": 5845, "iops_mean": 5500.8, "iops_stddev": 243.10327, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 78.84, "sys_cpu": 2.4, "ctx": 19511, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 15.489783, "100": 44.858556, "250": 39.637117, "500": 0.010908, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 27324, "write_ios": 1, "read_sectors": 218592, "write_sectors": 8, "read_merges": 0, "write_merges": 0, "read_ticks": 2809, "write_ticks": 0, "in_queue": 2810, "util": 97.573964}]} 2026-04-19 19:56:48.600684 2026-04-19 19:16:23.943354 +134 2 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628638, "timestamp_ms": 1776628638113, "time": "Sun Apr 19 19:57:18 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "job_start": 1776628632567, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 50294784, "io_kbytes": 49116, "bw_bytes": 10056945, "bw": 9821, "iops": 2455.308938, "runtime": 5001, "total_ios": 12279, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 103700, "max": 2158638, "mean": 164349.899992, "stddev": 68697.090307, "N": 12279}, "clat_ns": {"min": 24360, "max": 813046, "mean": 225041.675544, "stddev": 59863.484502, "N": 12279, "percentile": {"1.000000": 28800, "5.000000": 175104, "10.000000": 179200, "20.000000": 187392, "30.000000": 193536, "40.000000": 201728, "50.000000": 214016, "60.000000": 232448, "70.000000": 246784, "80.000000": 264192, "90.000000": 292864, "95.000000": 321536, "99.000000": 395264, "99.500000": 436224, "99.900000": 569344, "99.950000": 692224, "99.990000": 798720}}, "lat_ns": {"min": 283479, "max": 2444586, "mean": 389391.575535, "stddev": 77863.922048, "N": 12279}, "bw_min": 9420, "bw_max": 10109, "bw_agg": 100.0, "bw_mean": 9823.8, "bw_dev": 267.672748, "bw_samples": 5, "iops_min": 2355, "iops_max": 2527, "iops_mean": 2455.8, "iops_stddev": 66.593543, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 43.3, "sys_cpu": 20.68, "ctx": 12456, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 2.53278, "100": 0.073296, "250": 69.346038, "500": 27.852431, "750": 0.171024, "1000": 0.024432}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 11752, "read_sectors": 0, "write_sectors": 95224, "read_merges": 0, "write_merges": 151, "read_ticks": 0, "write_ticks": 1981, "in_queue": 2229, "util": 80.736196}]} 2026-04-19 19:57:12.161818 2026-04-19 19:16:23.943354 +135 2 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628643, "timestamp_ms": 1776628643924, "time": "Sun Apr 19 19:57:23 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "job_start": 1776628638634, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9307160576, "io_kbytes": 9089024, "bw_bytes": 1861059903, "bw": 1817441, "iops": 887.422515, "runtime": 5001, "total_ios": 4438, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 298849, "max": 1392822, "mean": 422544.107256, "stddev": 107705.23148, "N": 4438}, "clat_ns": {"min": 36470, "max": 4160845, "mean": 686300.244479, "stddev": 180653.889001, "N": 4438, "percentile": {"1.000000": 444416, "5.000000": 528384, "10.000000": 552960, "20.000000": 585728, "30.000000": 610304, "40.000000": 634880, "50.000000": 659456, "60.000000": 684032, "70.000000": 716800, "80.000000": 757760, "90.000000": 823296, "95.000000": 897024, "99.000000": 1318912, "99.500000": 1581056, "99.900000": 3194880, "99.950000": 3588096, "99.990000": 4145152}}, "lat_ns": {"min": 805306, "max": 4612142, "mean": 1108844.351735, "stddev": 219451.089755, "N": 4438}, "bw_min": 1771520, "bw_max": 1853440, "bw_agg": 100.0, "bw_mean": 1817751.2, "bw_dev": 40705.679367, "bw_samples": 5, "iops_min": 866, "iops_max": 905, "iops_mean": 887.4, "iops_stddev": 19.654516, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 19.52, "sys_cpu": 25.54, "ctx": 4578, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.022533, "100": 0.0, "250": 0.0, "500": 2.456061, "750": 76.1379, "1000": 19.152772}, "latency_ms": {"2": 2.027941, "4": 0.180261, "10": 0.022533, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8520, "read_sectors": 0, "write_sectors": 17441152, "read_merges": 0, "write_merges": 43, "read_ticks": 0, "write_ticks": 5568, "in_queue": 5568, "util": 80.960163}]} 2026-04-19 19:57:18.21397 2026-04-19 19:16:23.943354 +136 2 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628661, "timestamp_ms": 1776628661172, "time": "Sun Apr 19 19:57:41 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "job_start": 1776628655895, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15135145984, "io_kbytes": 14780416, "bw_bytes": 3026423912, "bw": 2955492, "iops": 1443.111378, "runtime": 5001, "total_ios": 7217, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 291108, "max": 5511659, "mean": 393260.138423, "stddev": 108866.139897, "N": 7217}, "clat_ns": {"min": 23870, "max": 11104256, "mean": 282744.132604, "stddev": 149153.556829, "N": 7217, "percentile": {"1.000000": 25728, "5.000000": 40192, "10.000000": 209920, "20.000000": 252928, "30.000000": 268288, "40.000000": 280576, "50.000000": 292864, "60.000000": 305152, "70.000000": 313344, "80.000000": 329728, "90.000000": 350208, "95.000000": 370688, "99.000000": 436224, "99.500000": 460800, "99.900000": 536576, "99.950000": 602112, "99.990000": 11075584}}, "lat_ns": {"min": 473058, "max": 11539734, "mean": 676004.271027, "stddev": 169773.583464, "N": 7217}, "bw_min": 2892979, "bw_max": 3003460, "bw_agg": 99.939939, "bw_mean": 2953717.4, "bw_dev": 40657.130891, "bw_samples": 5, "iops_min": 1412, "iops_max": 1466, "iops_mean": 1441.6, "iops_stddev": 19.756012, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 24.34, "sys_cpu": 52.3, "ctx": 6396, "majf": 0, "minf": 558, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.015935, "100": 0.0, "250": 13.509769, "500": 81.294167, "750": 0.152418, "1000": 0.0}, "latency_ms": {"2": 0.013856, "4": 0.0, "10": 0.0, "20": 0.013856, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 13804, "write_ios": 1, "read_sectors": 28270592, "write_sectors": 8, "read_merges": 6902, "write_merges": 0, "read_ticks": 5246, "write_ticks": 0, "in_queue": 5246, "util": 79.507187}]} 2026-04-19 19:57:26.446238 2026-04-19 19:16:23.943354 +137 2 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628675, "timestamp_ms": 1776628675987, "time": "Sun Apr 19 19:57:55 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "job_start": 1776628670689, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15227420672, "io_kbytes": 14870528, "bw_bytes": 3044875159, "bw": 2973510, "iops": 1451.909618, "runtime": 5001, "total_ios": 7261, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 297278, "max": 5936887, "mean": 398497.770417, "stddev": 112760.643096, "N": 7261}, "clat_ns": {"min": 23370, "max": 931695, "mean": 274075.236056, "stddev": 81321.780494, "N": 7261, "percentile": {"1.000000": 24960, "5.000000": 27008, "10.000000": 199680, "20.000000": 244736, "30.000000": 261120, "40.000000": 272384, "50.000000": 284672, "60.000000": 296960, "70.000000": 309248, "80.000000": 321536, "90.000000": 346112, "95.000000": 370688, "99.000000": 444416, "99.500000": 477184, "99.900000": 528384, "99.950000": 610304, "99.990000": 929792}}, "lat_ns": {"min": 506397, "max": 6178925, "mean": 672573.006473, "stddev": 114766.412555, "N": 7261}, "bw_min": 2890570, "bw_max": 3054574, "bw_agg": 100.0, "bw_mean": 2975302.0, "bw_dev": 66416.998502, "bw_samples": 5, "iops_min": 1410, "iops_max": 1491, "iops_mean": 1452.2, "iops_stddev": 32.828341, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 22.38, "sys_cpu": 55.06, "ctx": 6462, "majf": 0, "minf": 557, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.935822, "100": 0.0, "250": 16.705688, "500": 77.138135, "750": 0.192811, "1000": 0.027544}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 13938, "write_ios": 6, "read_sectors": 28545024, "write_sectors": 128, "read_merges": 6969, "write_merges": 10, "read_ticks": 5214, "write_ticks": 2, "in_queue": 5216, "util": 78.559738}]} 2026-04-19 19:57:41.277601 2026-04-19 19:16:23.943354 +1703 50 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-29 21:02:47.002686 2026-04-29 21:02:47.002689 +138 2 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628681, "timestamp_ms": 1776628681802, "time": "Sun Apr 19 19:58:01 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "job_start": 1776628676517, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9523167232, "io_kbytes": 9299968, "bw_bytes": 1904252595, "bw": 1859621, "iops": 908.018396, "runtime": 5001, "total_ios": 4541, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 367388, "max": 11955892, "mean": 492558.749174, "stddev": 215077.78593, "N": 4541}, "clat_ns": {"min": 27880, "max": 4441865, "mean": 589582.114512, "stddev": 203115.251824, "N": 4541, "percentile": {"1.000000": 325632, "5.000000": 407552, "10.000000": 444416, "20.000000": 489472, "30.000000": 518144, "40.000000": 544768, "50.000000": 569344, "60.000000": 593920, "70.000000": 626688, "80.000000": 659456, "90.000000": 724992, "95.000000": 774144, "99.000000": 1073152, "99.500000": 1761280, "99.900000": 3522560, "99.950000": 4145152, "99.990000": 4423680}}, "lat_ns": {"min": 709416, "max": 12287150, "mean": 1082140.863686, "stddev": 297368.3365, "N": 4541}, "bw_min": 1779980, "bw_max": 1961897, "bw_agg": 100.0, "bw_mean": 1860395.0, "bw_dev": 67103.34026, "bw_samples": 5, "iops_min": 869, "iops_max": 957, "iops_mean": 908.0, "iops_stddev": 32.557641, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 17.42, "sys_cpu": 34.26, "ctx": 4703, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.154151, "100": 0.022022, "250": 0.110108, "500": 23.342876, "750": 69.478089, "1000": 5.681568}, "latency_ms": {"2": 0.814799, "4": 0.330324, "10": 0.066065, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 8677, "read_sectors": 0, "write_sectors": 17768592, "read_merges": 0, "write_merges": 4356, "read_ticks": 0, "write_ticks": 4977, "in_queue": 4977, "util": 65.147179}]} 2026-04-19 19:57:56.095228 2026-04-19 19:16:23.943354 +139 2 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628709, "timestamp_ms": 1776628709644, "time": "Sun Apr 19 19:58:29 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "job_start": 1776628704398, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 12721324032, "io_kbytes": 12423168, "bw_bytes": 2543756055, "bw": 2484136, "iops": 606.478704, "runtime": 5001, "total_ios": 3033, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 530137, "max": 4682643, "mean": 770110.419387, "stddev": 193101.342543, "N": 3033}, "clat_ns": {"min": 31400, "max": 6769992, "mean": 856401.905045, "stddev": 271586.273812, "N": 3033, "percentile": {"1.000000": 419840, "5.000000": 552960, "10.000000": 634880, "20.000000": 692224, "30.000000": 749568, "40.000000": 790528, "50.000000": 831488, "60.000000": 872448, "70.000000": 921600, "80.000000": 978944, "90.000000": 1073152, "95.000000": 1187840, "99.000000": 1646592, "99.500000": 2113536, "99.900000": 3686400, "99.950000": 5472256, "99.990000": 6782976}}, "lat_ns": {"min": 1134113, "max": 7587257, "mean": 1626512.324431, "stddev": 321956.569258, "N": 3033}, "bw_min": 2418317, "bw_max": 2562562, "bw_agg": 100.0, "bw_mean": 2484662.2, "bw_dev": 51785.805808, "bw_samples": 5, "iops_min": 590, "iops_max": 625, "iops_mean": 606.4, "iops_stddev": 12.54193, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.52, "sys_cpu": 37.64, "ctx": 3276, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.065941, "100": 0.0, "250": 0.131883, "500": 2.967359, "750": 27.068909, "1000": 52.027695}, "latency_ms": {"2": 17.012859, "4": 0.659413, "10": 0.065941, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 12113, "read_sectors": 0, "write_sectors": 24797456, "read_merges": 0, "write_merges": 29, "read_ticks": 0, "write_ticks": 9186, "in_queue": 9186, "util": 67.668293}]} 2026-04-19 19:58:23.928292 2026-04-19 19:16:23.943354 +140 2 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628725, "timestamp_ms": 1776628725879, "time": "Sun Apr 19 19:58:45 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "job_start": 1776628720600, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 24805113856, "io_kbytes": 24223744, "bw_bytes": 4960030765, "bw": 4843780, "iops": 1182.563487, "runtime": 5001, "total_ios": 5914, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 426398, "max": 9725575, "mean": 559600.777308, "stddev": 145196.565171, "N": 5914}, "clat_ns": {"min": 22740, "max": 825435, "mean": 270140.826682, "stddev": 83070.72534, "N": 5914, "percentile": {"1.000000": 24704, "5.000000": 156672, "10.000000": 205824, "20.000000": 224256, "30.000000": 240640, "40.000000": 254976, "50.000000": 268288, "60.000000": 280576, "70.000000": 296960, "80.000000": 313344, "90.000000": 350208, "95.000000": 403456, "99.000000": 552960, "99.500000": 602112, "99.900000": 684032, "99.950000": 741376, "99.990000": 823296}}, "lat_ns": {"min": 630637, "max": 10002213, "mean": 829741.603991, "stddev": 149581.677226, "N": 5914}, "bw_min": 4743168, "bw_max": 4911104, "bw_agg": 100.0, "bw_mean": 4846692.0, "bw_dev": 69734.588394, "bw_samples": 5, "iops_min": 1158, "iops_max": 1198, "iops_mean": 1183.0, "iops_stddev": 16.777962, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.86, "sys_cpu": 75.8, "ctx": 5260, "majf": 0, "minf": 1068, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 3.533987, "100": 0.016909, "250": 32.600609, "500": 62.292864, "750": 1.538722, "1000": 0.016909}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 22555, "write_ios": 0, "read_sectors": 46194688, "write_sectors": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 10317, "write_ticks": 0, "in_queue": 10317, "util": 60.25878}]} 2026-04-19 19:58:32.169523 2026-04-19 19:16:23.943354 +141 2 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628740, "timestamp_ms": 1776628740680, "time": "Sun Apr 19 19:59:00 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "job_start": 1776628735406, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 18513657856, "io_kbytes": 18079744, "bw_bytes": 3701251070, "bw": 3614502, "iops": 882.447021, "runtime": 5002, "total_ios": 4414, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 478427, "max": 9264118, "mean": 574653.344812, "stddev": 152951.535928, "N": 4414}, "clat_ns": {"min": 373378, "max": 10716700, "mean": 541399.356819, "stddev": 173170.217975, "N": 4414, "percentile": {"1.000000": 411648, "5.000000": 436224, "10.000000": 448512, "20.000000": 468992, "30.000000": 489472, "40.000000": 505856, "50.000000": 528384, "60.000000": 544768, "70.000000": 569344, "80.000000": 610304, "90.000000": 643072, "95.000000": 675840, "99.000000": 741376, "99.500000": 774144, "99.900000": 856064, "99.950000": 970752, "99.990000": 10682368}}, "lat_ns": {"min": 903705, "max": 11356476, "mean": 1116052.701631, "stddev": 235699.092103, "N": 4414}, "bw_min": 3494489, "bw_max": 3727360, "bw_agg": 100.0, "bw_mean": 3615978.6, "bw_dev": 83955.495281, "bw_samples": 5, "iops_min": 853, "iops_max": 910, "iops_mean": 882.6, "iops_stddev": 20.476816, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 9.858028, "sys_cpu": 52.489502, "ctx": 4418, "majf": 0, "minf": 1069, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 35.364749, "750": 63.683734, "1000": 0.906208}, "latency_ms": {"2": 0.0, "4": 0.022655, "10": 0.0, "20": 0.022655, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 20991, "write_ios": 6, "read_sectors": 34392424, "write_sectors": 128, "read_merges": 0, "write_merges": 10, "read_ticks": 15738, "write_ticks": 2, "in_queue": 15740, "util": 81.084412}]} 2026-04-19 19:58:45.977832 2026-04-19 19:16:23.943354 +142 2 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1401MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628746, "timestamp_ms": 1776628746477, "time": "Sun Apr 19 19:59:06 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "job_start": 1776628741202, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1401MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260419-195329Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11446255616, "io_kbytes": 11177984, "bw_bytes": 2288793364, "bw": 2235149, "iops": 545.690862, "runtime": 5001, "total_ios": 2729, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 549187, "max": 4829693, "mean": 854130.506413, "stddev": 239297.959818, "N": 2729}, "clat_ns": {"min": 31429, "max": 44515839, "mean": 955216.329791, "stddev": 1224714.864926, "N": 2729, "percentile": {"1.000000": 440320, "5.000000": 544768, "10.000000": 626688, "20.000000": 716800, "30.000000": 774144, "40.000000": 831488, "50.000000": 880640, "60.000000": 929792, "70.000000": 987136, "80.000000": 1056768, "90.000000": 1204224, "95.000000": 1368064, "99.000000": 1990656, "99.500000": 2801664, "99.900000": 26345472, "99.950000": 35913728, "99.990000": 44302336}}, "lat_ns": {"min": 1111433, "max": 45166946, "mean": 1809346.836204, "stddev": 1237716.083893, "N": 2729}, "bw_min": 2127792, "bw_max": 2328295, "bw_agg": 99.940641, "bw_mean": 2233823.8, "bw_dev": 87914.594833, "bw_samples": 5, "iops_min": 519, "iops_max": 568, "iops_mean": 545.0, "iops_stddev": 21.575449, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.4, "sys_cpu": 49.7, "ctx": 2969, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.146574, "100": 0.0, "250": 0.0, "500": 2.491755, "750": 22.572371, "1000": 47.086845}, "latency_ms": {"2": 26.713082, "4": 0.732869, "10": 0.146574, "20": 0.0, "50": 0.10993, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 0, "write_ios": 10501, "read_sectors": 0, "write_sectors": 21504144, "read_merges": 0, "write_merges": 17, "read_ticks": 0, "write_ticks": 9425, "in_queue": 9425, "util": 90.026569}]} 2026-04-19 19:59:00.777696 2026-04-19 19:16:23.943354 +143 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 19:59:12.093623 2026-04-19 19:59:12.093627 +144 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:42:02' --until '2026-04-19 19:59:11' 0 OOM records. 2026-04-19 19:42:02.239695 2026-04-19 19:59:11.821339 +145 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:42:02' --until '2026-04-19 19:59:11' 0 Systemd errors records 2026-04-19 19:42:02.239695 2026-04-19 19:59:11.821339 +146 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628768, "timestamp_ms": 1776628768292, "time": "Sun Apr 19 19:59:28 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628754993, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "281MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles", "offset_increment": "3k", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 17862492160, "io_kbytes": 17443840, "bw_bytes": 1373932171, "bw": 1341730, "iops": 1310.283824, "runtime": 13001, "total_ios": 17035, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 196379, "max": 10586531, "mean": 283299.13619, "stddev": 115432.425114, "N": 17035}, "clat_ns": {"min": 26330, "max": 672826674, "mean": 462197.974582, "stddev": 6055900.333161, "N": 17035, "percentile": {"1.000000": 218112, "5.000000": 276480, "10.000000": 292864, "20.000000": 317440, "30.000000": 337920, "40.000000": 354304, "50.000000": 374784, "60.000000": 395264, "70.000000": 419840, "80.000000": 456704, "90.000000": 522240, "95.000000": 602112, "99.000000": 847872, "99.500000": 1003520, "99.900000": 1662976, "99.950000": 2088960, "99.990000": 417333248}}, "lat_ns": {"min": 455218, "max": 673135763, "mean": 745497.110772, "stddev": 6057230.60436, "N": 17035}, "bw_min": 79379, "bw_max": 1543168, "bw_agg": 99.094182, "bw_mean": 1329577.333333, "bw_dev": 401390.24611, "bw_samples": 12, "iops_min": 77, "iops_max": 1507, "iops_mean": 1298.083333, "iops_stddev": 392.075238, "iops_samples": 12}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 20.784615, "sys_cpu": 26.030769, "ctx": 17268, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.170238, "100": 0.01, "250": 2.148518, "500": 85.206927, "750": 10.719108, "1000": 1.244497}, "latency_ms": {"2": 0.44027, "4": 0.046962, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.01, "750": 0.01, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 5, "write_ios": 59894, "read_sectors": 272, "write_sectors": 69854307, "read_merges": 29, "write_merges": 38235, "read_ticks": 12, "write_ticks": 20201, "in_queue": 20212, "util": 97.145289}]} 2026-04-19 19:59:14.426525 2026-04-19 19:16:23.943354 +147 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-195914Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628768, "timestamp_ms": 1776628768292, "time": "Sun Apr 19 19:59:28 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628754988, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "large_testfile", "size": "281MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260419-195914Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 18448646144, "io_kbytes": 18016256, "bw_bytes": 1419017471, "bw": 1385759, "iops": 1353.280517, "runtime": 13001, "total_ios": 17594, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 200069, "max": 3252391, "mean": 290585.942367, "stddev": 84135.621041, "N": 17594}, "clat_ns": {"min": 23600, "max": 672821084, "mean": 431094.814141, "stddev": 5071865.012368, "N": 17594, "percentile": {"1.000000": 224256, "5.000000": 276480, "10.000000": 292864, "20.000000": 313344, "30.000000": 333824, "40.000000": 350208, "50.000000": 366592, "60.000000": 387072, "70.000000": 411648, "80.000000": 444416, "90.000000": 514048, "95.000000": 593920, "99.000000": 839680, "99.500000": 987136, "99.900000": 1744896, "99.950000": 2408448, "99.990000": 11337728}}, "lat_ns": {"min": 460438, "max": 673207862, "mean": 721680.756508, "stddev": 5073627.801057, "N": 17594}, "bw_min": 690832, "bw_max": 1557013, "bw_agg": 99.467422, "bw_mean": 1378379.083333, "bw_dev": 228267.587678, "bw_samples": 12, "iops_min": 674, "iops_max": 1507, "iops_mean": 1344.833333, "iops_stddev": 222.129705, "iops_samples": 12}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 22.315385, "sys_cpu": 27.169231, "ctx": 17814, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.142094, "100": 0.0, "250": 1.926793, "500": 86.59202, "750": 9.781744, "1000": 1.091281}, "latency_ms": {"2": 0.386495, "4": 0.062521, "10": 0.01, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.01, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 5, "write_ios": 59904, "read_sectors": 272, "write_sectors": 69864580, "read_merges": 29, "write_merges": 38241, "read_ticks": 12, "write_ticks": 20203, "in_queue": 20215, "util": 97.130704}]} 2026-04-19 19:59:14.416151 2026-04-19 19:16:23.943354 +148 2 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 281MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-195914Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628768, "timestamp_ms": 1776628768539, "time": "Sun Apr 19 19:59:28 2026", "jobs": [{"jobname": "rand_write_512b", "groupid": 0, "job_start": 1776628754952, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "rand_write_512b", "numjobs": "1", "filename": "small_testfile", "size": "281MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260419-195914Z/testfiles", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 13447680, "io_kbytes": 13132, "bw_bytes": 1034357, "bw": 1010, "iops": 2020.229213, "runtime": 13001, "total_ios": 26265, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 74900, "max": 672937504, "mean": 415122.7336, "stddev": 4726483.823883, "N": 26265}, "clat_ns": {"min": 19990, "max": 5081394, "mean": 61910.390558, "stddev": 97774.421263, "N": 26265, "percentile": {"1.000000": 23936, "5.000000": 24448, "10.000000": 24960, "20.000000": 25472, "30.000000": 25984, "40.000000": 26240, "50.000000": 27008, "60.000000": 27776, "70.000000": 34048, "80.000000": 40192, "90.000000": 177152, "95.000000": 250880, "99.000000": 391168, "99.500000": 464896, "99.900000": 692224, "99.950000": 823296, "99.990000": 3162112}}, "lat_ns": {"min": 194659, "max": 673020323, "mean": 477033.124158, "stddev": 4725918.337524, "N": 26265}, "bw_min": 135, "bw_max": 1173, "bw_agg": 99.88969, "bw_mean": 1009.307692, "bw_dev": 272.56326, "bw_samples": 13, "iops_min": 270, "iops_max": 2346, "iops_mean": 2019.0, "iops_stddev": 545.180093, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 13.438462, "sys_cpu": 51.346154, "ctx": 26498, "majf": 0, "minf": 38, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 82.554731, "100": 1.199315, "250": 11.17076, "500": 4.717304, "750": 0.289358, "1000": 0.034266}, "latency_ms": {"2": 0.015229, "4": 0.01, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 5, "write_ios": 59894, "read_sectors": 272, "write_sectors": 69854307, "read_merges": 29, "write_merges": 38234, "read_ticks": 12, "write_ticks": 20201, "in_queue": 20212, "util": 97.280756}]} 2026-04-19 19:59:14.407357 2026-04-19 19:16:23.943354 +149 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628782, "timestamp_ms": 1776628782077, "time": "Sun Apr 19 19:59:42 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776628768796, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "seq_write_256k", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "281MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles", "offset_increment": "3k", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8425308160, "io_kbytes": 8227840, "bw_bytes": 648050777, "bw": 632862, "iops": 2472.117529, "runtime": 13001, "total_ios": 32140, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 115149, "max": 3795069, "mean": 172325.399751, "stddev": 70091.593245, "N": 32140}, "clat_ns": {"min": 24060, "max": 119867748, "mean": 216358.676042, "stddev": 685064.111483, "N": 32140, "percentile": {"1.000000": 25984, "5.000000": 36096, "10.000000": 162816, "20.000000": 181248, "30.000000": 191488, "40.000000": 199680, "50.000000": 207872, "60.000000": 216064, "70.000000": 226304, "80.000000": 242688, "90.000000": 272384, "95.000000": 305152, "99.000000": 436224, "99.500000": 544768, "99.900000": 1073152, "99.950000": 1728512, "99.990000": 3489792}}, "lat_ns": {"min": 265669, "max": 120121237, "mean": 388684.075793, "stddev": 687696.038619, "N": 32140}, "bw_min": 527856, "bw_max": 674722, "bw_agg": 100.0, "bw_mean": 633116.615385, "bw_dev": 43283.984362, "bw_samples": 13, "iops_min": 2061, "iops_max": 2635, "iops_mean": 2472.846154, "iops_stddev": 169.159612, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 30.338462, "sys_cpu": 27.661538, "ctx": 32262, "majf": 0, "minf": 47, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 5.332918, "100": 0.024891, "250": 78.186061, "500": 15.846297, "750": 0.373367, "1000": 0.11201}, "latency_ms": {"2": 0.074673, "4": 0.043559, "10": 0.0, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 4, "write_ios": 94194, "read_sectors": 32, "write_sectors": 33044432, "read_merges": 0, "write_merges": 140, "read_ticks": 1, "write_ticks": 31549, "in_queue": 37028, "util": 100.0}]} 2026-04-19 19:59:28.411519 2026-04-19 19:16:23.943354 +150 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 281MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-195914Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628782, "timestamp_ms": 1776628782076, "time": "Sun Apr 19 19:59:42 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776628768800, "error": 0, "eta": 0, "elapsed": 14, "job options": {"name": "seq_write_256k", "numjobs": "1", "filename": "large_testfile", "size": "281MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260419-195914Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260419-195914Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8699248640, "io_kbytes": 8495360, "bw_bytes": 669121501, "bw": 653438, "iops": 2552.495962, "runtime": 13001, "total_ios": 33185, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 106650, "max": 6518863, "mean": 159568.34383, "stddev": 71045.803643, "N": 33185}, "clat_ns": {"min": 23060, "max": 119823899, "mean": 216628.966159, "stddev": 671518.675078, "N": 33185, "percentile": {"1.000000": 25984, "5.000000": 126464, "10.000000": 166912, "20.000000": 183296, "30.000000": 191488, "40.000000": 197632, "50.000000": 205824, "60.000000": 214016, "70.000000": 224256, "80.000000": 240640, "90.000000": 268288, "95.000000": 309248, "99.000000": 440320, "99.500000": 544768, "99.900000": 1056768, "99.950000": 1925120, "99.990000": 3883008}}, "lat_ns": {"min": 255069, "max": 119966028, "mean": 376197.309989, "stddev": 673697.217257, "N": 33185}, "bw_min": 526321, "bw_max": 692736, "bw_agg": 100.0, "bw_mean": 653709.307692, "bw_dev": 49527.744683, "bw_samples": 13, "iops_min": 2055, "iops_max": 2706, "iops_mean": 2553.230769, "iops_stddev": 193.532579, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 30.623077, "sys_cpu": 25.969231, "ctx": 33327, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 4.722013, "100": 0.042188, "250": 79.511828, "500": 15.097182, "750": 0.391743, "1000": 0.117523}, "latency_ms": {"2": 0.072322, "4": 0.036161, "10": 0.01, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 4, "write_ios": 94200, "read_sectors": 32, "write_sectors": 33047000, "read_merges": 0, "write_merges": 140, "read_ticks": 1, "write_ticks": 31550, "in_queue": 37029, "util": 100.0}]} 2026-04-19 19:59:28.413886 2026-04-19 19:16:23.943354 +151 2 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 281MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-195914Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628782, "timestamp_ms": 1776628782955, "time": "Sun Apr 19 19:59:42 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "job_start": 1776628769167, "error": 0, "eta": 0, "elapsed": 15, "job options": {"name": "rand_write_4k", "numjobs": "1", "filename": "small_testfile", "size": "281MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260419-195914Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260419-195914Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 129585152, "io_kbytes": 126548, "bw_bytes": 9967321, "bw": 9733, "iops": 2433.428198, "runtime": 13001, "total_ios": 31637, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 105219, "max": 3356211, "mean": 176536.701805, "stddev": 77191.170773, "N": 31637}, "clat_ns": {"min": 23740, "max": 119904448, "mean": 216134.040206, "stddev": 679243.524469, "N": 31637, "percentile": {"1.000000": 26240, "5.000000": 28032, "10.000000": 162816, "20.000000": 177152, "30.000000": 191488, "40.000000": 201728, "50.000000": 209920, "60.000000": 220160, "70.000000": 234496, "80.000000": 254976, "90.000000": 280576, "95.000000": 309248, "99.000000": 407552, "99.500000": 481280, "99.900000": 905216, "99.950000": 1630208, "99.990000": 3260416}}, "lat_ns": {"min": 260449, "max": 120098837, "mean": 392670.742011, "stddev": 679745.927404, "N": 31637}, "bw_min": 8432, "bw_max": 10436, "bw_agg": 100.0, "bw_mean": 9736.692308, "bw_dev": 487.515365, "bw_samples": 13, "iops_min": 2108, "iops_max": 2609, "iops_mean": 2434.153846, "iops_stddev": 121.901494, "iops_samples": 13}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13000, "usr_cpu": 22.569231, "sys_cpu": 38.315385, "ctx": 31691, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 7.023422, "100": 0.025287, "250": 70.90116, "500": 21.613933, "750": 0.300281, "1000": 0.044252}, "latency_ms": {"2": 0.053735, "4": 0.034769, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 1, "write_ios": 95463, "read_sectors": 8, "write_sectors": 33197720, "read_merges": 0, "write_merges": 140, "read_ticks": 1, "write_ticks": 31660, "in_queue": 37139, "util": 100.0}]} 2026-04-19 19:59:28.69776 2026-04-19 19:16:23.943354 +152 2 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-195914Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628807, "timestamp_ms": 1776628807066, "time": "Sun Apr 19 20:00:07 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "job_start": 1776628794825, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_1M", "numjobs": "1", "filename": "large_testfile", "size": "281MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260419-195914Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 26048724992, "io_kbytes": 25438208, "bw_bytes": 2170546203, "bw": 2119674, "iops": 2069.994167, "runtime": 12001, "total_ios": 24842, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 149039, "max": 6644193, "mean": 195535.869254, "stddev": 71674.591172, "N": 24842}, "clat_ns": {"min": 21850, "max": 3098643, "mean": 272650.234442, "stddev": 75337.580022, "N": 24842, "percentile": {"1.000000": 112128, "5.000000": 193536, "10.000000": 214016, "20.000000": 234496, "30.000000": 248832, "40.000000": 261120, "50.000000": 272384, "60.000000": 280576, "70.000000": 292864, "80.000000": 305152, "90.000000": 325632, "95.000000": 354304, "99.000000": 440320, "99.500000": 509952, "99.900000": 847872, "99.950000": 1351680, "99.990000": 2736128}}, "lat_ns": {"min": 318968, "max": 6670212, "mean": 468186.103695, "stddev": 98581.978015, "N": 24842}, "bw_min": 2059275, "bw_max": 2159616, "bw_agg": 100.0, "bw_mean": 2120910.833333, "bw_dev": 32199.57033, "bw_samples": 12, "iops_min": 2011, "iops_max": 2109, "iops_mean": 2071.0, "iops_stddev": 31.446925, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 25.958333, "sys_cpu": 41.016667, "ctx": 24526, "majf": 0, "minf": 302, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.54746, "100": 0.177119, "250": 29.466227, "500": 69.277836, "750": 0.402544, "1000": 0.048305}, "latency_ms": {"2": 0.048305, "4": 0.032204, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 82512, "write_ios": 213, "read_sectors": 101888032, "write_sectors": 477992, "read_merges": 0, "write_merges": 6, "read_ticks": 18084, "write_ticks": 16408, "in_queue": 35815, "util": 91.421467}]} 2026-04-19 19:59:42.15208 2026-04-19 19:16:23.943354 +153 2 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628807, "timestamp_ms": 1776628807076, "time": "Sun Apr 19 20:00:07 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "job_start": 1776628794827, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_1M", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "281MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles", "offset_increment": "3k", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 26161971200, "io_kbytes": 25548800, "bw_bytes": 2179982601, "bw": 2128889, "iops": 2078.993417, "runtime": 12001, "total_ios": 24950, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 147559, "max": 4664244, "mean": 197946.790341, "stddev": 67073.121847, "N": 24950}, "clat_ns": {"min": 18250, "max": 1626341, "mean": 268290.552265, "stddev": 61651.500058, "N": 24950, "percentile": {"1.000000": 98816, "5.000000": 189440, "10.000000": 209920, "20.000000": 230400, "30.000000": 244736, "40.000000": 257024, "50.000000": 268288, "60.000000": 276480, "70.000000": 288768, "80.000000": 301056, "90.000000": 325632, "95.000000": 350208, "99.000000": 436224, "99.500000": 501760, "99.900000": 700416, "99.950000": 872448, "99.990000": 1482752}}, "lat_ns": {"min": 310758, "max": 4994922, "mean": 466237.342605, "stddev": 82700.904102, "N": 24950}, "bw_min": 2051072, "bw_max": 2214912, "bw_agg": 100.0, "bw_mean": 2129870.5, "bw_dev": 49911.379836, "bw_samples": 12, "iops_min": 2003, "iops_max": 2163, "iops_mean": 2080.0, "iops_stddev": 48.619113, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 26.233333, "sys_cpu": 41.558333, "ctx": 24733, "majf": 0, "minf": 300, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 0.789579, "100": 0.232465, "250": 32.901804, "500": 65.559118, "750": 0.432866, "1000": 0.044088}, "latency_ms": {"2": 0.032064, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 82610, "write_ios": 213, "read_sectors": 101984339, "write_sectors": 477992, "read_merges": 0, "write_merges": 6, "read_ticks": 18103, "write_ticks": 16408, "in_queue": 35834, "util": 91.406573}]} 2026-04-19 19:59:42.146331 2026-04-19 19:16:23.943354 +154 2 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 281MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-195914Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628812, "timestamp_ms": 1776628812083, "time": "Sun Apr 19 20:00:12 2026", "jobs": [{"jobname": "rand_read_512b", "groupid": 0, "job_start": 1776628799828, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "rand_read_512b", "numjobs": "1", "filename": "small_testfile", "size": "281MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260419-195914Z/testfiles", "bs": "512b", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 29873664, "io_kbytes": 29173, "bw_bytes": 2489264, "bw": 2430, "iops": 4861.844846, "runtime": 12001, "total_ios": 58347, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 51520, "max": 2071928, "mean": 87215.420433, "stddev": 42432.123943, "N": 58347}, "clat_ns": {"min": 19379, "max": 4809483, "mean": 105290.159083, "stddev": 74300.09638, "N": 58347, "percentile": {"1.000000": 20864, "5.000000": 22656, "10.000000": 25216, "20.000000": 78336, "30.000000": 97792, "40.000000": 103936, "50.000000": 108032, "60.000000": 113152, "70.000000": 118272, "80.000000": 126464, "90.000000": 142336, "95.000000": 162816, "99.000000": 207872, "99.500000": 240640, "99.900000": 505856, "99.950000": 1449984, "99.990000": 3260416}}, "lat_ns": {"min": 104030, "max": 4940552, "mean": 192505.579516, "stddev": 73364.610437, "N": 58347}, "bw_min": 2259, "bw_max": 2724, "bw_agg": 100.0, "bw_mean": 2431.916667, "bw_dev": 154.926058, "bw_samples": 12, "iops_min": 4518, "iops_max": 5448, "iops_mean": 4864.333333, "iops_stddev": 309.694082, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 60.325, "sys_cpu": 18.925, "ctx": 42258, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.01, "50": 11.582429, "100": 22.299347, "250": 65.684611, "500": 0.32221, "750": 0.032564, "1000": 0.011997}, "latency_ms": {"2": 0.013711, "4": 0.042847, "10": 0.01, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 87791, "write_ios": 501, "read_sectors": 60349459, "write_sectors": 1151200, "read_merges": 0, "write_merges": 23, "read_ticks": 15085, "write_ticks": 21756, "in_queue": 36901, "util": 95.792961}]} 2026-04-19 19:59:43.103361 2026-04-19 19:16:23.943354 +155 2 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628824, "timestamp_ms": 1776628824659, "time": "Sun Apr 19 20:00:24 2026", "jobs": [{"jobname": "seq_read_256k", "groupid": 0, "job_start": 1776628812616, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_256k", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "281MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/testfiles", "offset_increment": "3k", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 10292297728, "io_kbytes": 10051072, "bw_bytes": 857620008, "bw": 837519, "iops": 3271.560703, "runtime": 12001, "total_ios": 39262, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 88419, "max": 1622002, "mean": 129996.327365, "stddev": 49902.249647, "N": 39262}, "clat_ns": {"min": 22980, "max": 2352577, "mean": 161431.287403, "stddev": 68779.532505, "N": 39262, "percentile": {"1.000000": 24448, "5.000000": 27264, "10.000000": 122368, "20.000000": 136192, "30.000000": 148480, "40.000000": 156672, "50.000000": 162816, "60.000000": 171008, "70.000000": 177152, "80.000000": 187392, "90.000000": 205824, "95.000000": 226304, "99.000000": 296960, "99.500000": 378880, "99.900000": 856064, "99.950000": 1433600, "99.990000": 2113536}}, "lat_ns": {"min": 162999, "max": 2490417, "mean": 291427.614767, "stddev": 70773.115431, "N": 39262}, "bw_min": 749037, "bw_max": 888440, "bw_agg": 100.0, "bw_mean": 838007.25, "bw_dev": 36147.226737, "bw_samples": 12, "iops_min": 2925, "iops_max": 3470, "iops_mean": 3273.166667, "iops_stddev": 141.284905, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 31.425, "sys_cpu": 42.416667, "ctx": 35851, "majf": 0, "minf": 106, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 6.930365, "100": 0.458459, "250": 90.130406, "500": 2.195507, "750": 0.155367, "1000": 0.048393}, "latency_ms": {"2": 0.068769, "4": 0.012735, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 110269, "write_ios": 266, "read_sectors": 41778296, "write_sectors": 575800, "read_merges": 0, "write_merges": 25, "read_ticks": 17015, "write_ticks": 16606, "in_queue": 35090, "util": 93.963918}]} 2026-04-19 20:00:07.211846 2026-04-19 19:16:23.943354 +242 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:39:47' --until '2026-04-19 20:40:31' 0 OOM records. 2026-04-19 20:39:47.098596 2026-04-19 20:40:31.999596 +5345 172 loader systemd-analyze critical-chain [{"service_name": "postfix.service", "slow_time_s": 6.202}] 2026-06-15 20:13:52.863648 2026-06-15 20:13:52.863653 +156 2 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 281MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260419-195914Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628824, "timestamp_ms": 1776628824843, "time": "Sun Apr 19 20:00:24 2026", "jobs": [{"jobname": "seq_read_256k", "groupid": 0, "job_start": 1776628812601, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_256k", "numjobs": "1", "filename": "large_testfile", "size": "281MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260419-195914Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260419-195914Z/read/bs_256k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 11350573056, "io_kbytes": 11084544, "bw_bytes": 945802271, "bw": 923635, "iops": 3607.949338, "runtime": 12001, "total_ios": 43299, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77080, "max": 2825394, "mean": 115168.966235, "stddev": 51027.879415, "N": 43299}, "clat_ns": {"min": 22190, "max": 2989973, "mean": 148879.463198, "stddev": 69260.188041, "N": 43299, "percentile": {"1.000000": 23680, "5.000000": 25216, "10.000000": 112128, "20.000000": 123392, "30.000000": 134144, "40.000000": 144384, "50.000000": 150528, "60.000000": 158720, "70.000000": 166912, "80.000000": 177152, "90.000000": 193536, "95.000000": 211968, "99.000000": 288768, "99.500000": 342016, "99.900000": 757760, "99.950000": 1089536, "99.990000": 2768896}}, "lat_ns": {"min": 154969, "max": 3133132, "mean": 264048.429433, "stddev": 71690.16035, "N": 43299}, "bw_min": 822784, "bw_max": 966342, "bw_agg": 100.0, "bw_mean": 924241.166667, "bw_dev": 37973.934158, "bw_samples": 12, "iops_min": 3214, "iops_max": 3774, "iops_mean": 3610.0, "iops_stddev": 148.127095, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 38.733333, "sys_cpu": 34.983333, "ctx": 39182, "majf": 0, "minf": 106, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 7.967851, "100": 0.570452, "250": 89.667198, "500": 1.579713, "750": 0.110857, "1000": 0.039262}, "latency_ms": {"2": 0.043881, "4": 0.020786, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 112417, "write_ios": 266, "read_sectors": 42444640, "write_sectors": 575800, "read_merges": 0, "write_merges": 25, "read_ticks": 17326, "write_ticks": 16606, "in_queue": 35401, "util": 93.842201}]} 2026-04-19 20:00:07.141473 2026-04-19 19:16:23.943354 +157 2 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 281MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260419-195914Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628830, "timestamp_ms": 1776628830137, "time": "Sun Apr 19 20:00:30 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "job_start": 1776628818003, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "rand_read_4k", "numjobs": "1", "filename": "small_testfile", "size": "281MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260419-195914Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260419-195914Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 237895680, "io_kbytes": 232320, "bw_bytes": 19822988, "bw": 19358, "iops": 4839.5967, "runtime": 12001, "total_ios": 58080, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 52540, "max": 581947, "mean": 88134.070816, "stddev": 40245.235899, "N": 58080}, "clat_ns": {"min": 20089, "max": 19595681, "mean": 104839.919146, "stddev": 93760.213475, "N": 58080, "percentile": {"1.000000": 20864, "5.000000": 22400, "10.000000": 25728, "20.000000": 74240, "30.000000": 94720, "40.000000": 99840, "50.000000": 105984, "60.000000": 112128, "70.000000": 120320, "80.000000": 130560, "90.000000": 148480, "95.000000": 168960, "99.000000": 222208, "99.500000": 257024, "99.900000": 444416, "99.950000": 634880, "99.990000": 1204224}}, "lat_ns": {"min": 106729, "max": 19704930, "mean": 192973.989962, "stddev": 93109.08675, "N": 58080}, "bw_min": 17028, "bw_max": 21033, "bw_agg": 100.0, "bw_mean": 19369.25, "bw_dev": 1422.58287, "bw_samples": 12, "iops_min": 4257, "iops_max": 5258, "iops_mean": 4842.25, "iops_stddev": 355.66356, "iops_samples": 12}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 58.825, "sys_cpu": 21.633333, "ctx": 39747, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 11.46522, "100": 28.870523, "250": 59.108127, "500": 0.476928, "750": 0.044766, "1000": 0.018939}, "latency_ms": {"2": 0.013774, "4": 0.0, "10": 0.0, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "vda", "read_ios": 102923, "write_ios": 2, "read_sectors": 23733840, "write_sectors": 24, "read_merges": 0, "write_merges": 1, "read_ticks": 14397, "write_ticks": 25, "in_queue": 14445, "util": 97.047261}]} 2026-04-19 20:00:12.185564 2026-04-19 19:16:23.943354 +158 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:00:30.941414 2026-04-19 20:00:30.941417 +159 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 19:59:13' --until '2026-04-19 20:00:30' 0 OOM records. 2026-04-19 19:59:13.993364 2026-04-19 20:00:30.676407 +160 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 19:59:13' --until '2026-04-19 20:00:30' 0 Systemd errors records 2026-04-19 19:59:13.993364 2026-04-19 20:00:30.676407 +161 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628838, "timestamp_ms": 1776628838346, "time": "Sun Apr 19 20:00:38 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628833202, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2447376384, "io_kbytes": 2390016, "bw_bytes": 489279564, "bw": 477812, "iops": 466.613355, "runtime": 5002, "total_ios": 2334, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1928089, "max": 81086009, "mean": 2103226.722793, "stddev": 1790441.056273, "N": 2334}, "clat_ns": {"min": 20280, "max": 1200213, "mean": 25595.752785, "stddev": 35787.622684, "N": 2334, "percentile": {"1.000000": 20608, "5.000000": 21120, "10.000000": 21120, "20.000000": 21632, "30.000000": 21888, "40.000000": 22144, "50.000000": 22400, "60.000000": 22656, "70.000000": 23168, "80.000000": 23936, "90.000000": 25728, "95.000000": 28032, "99.000000": 105984, "99.500000": 166912, "99.900000": 268288, "99.950000": 1056768, "99.990000": 1204224}}, "lat_ns": {"min": 1949759, "max": 82286222, "mean": 2128822.475578, "stddev": 1813553.559836, "N": 2334}, "bw_min": 396915, "bw_max": 500736, "bw_agg": 100.0, "bw_mean": 477918.6, "bw_dev": 45370.451847, "bw_samples": 5, "iops_min": 388, "iops_max": 489, "iops_mean": 466.6, "iops_stddev": 43.992045, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 2.219556, "sys_cpu": 97.70046, "ctx": 14, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 98.329049, "100": 0.599829, "250": 0.942588, "500": 0.042845, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.08569, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:32.596035 2026-04-19 19:16:23.943354 +162 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628844, "timestamp_ms": 1776628844159, "time": "Sun Apr 19 20:00:44 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776628838988, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2284060672, "io_kbytes": 2230528, "bw_bytes": 456720790, "bw": 446016, "iops": 1742.25155, "runtime": 5001, "total_ios": 8713, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 480297, "max": 5512649, "mean": 543290.53885, "stddev": 87356.472714, "N": 8713}, "clat_ns": {"min": 16110, "max": 712536, "mean": 20960.002525, "stddev": 15663.218156, "N": 8713, "percentile": {"1.000000": 16320, "5.000000": 16512, "10.000000": 16512, "20.000000": 16768, "30.000000": 17280, "40.000000": 18304, "50.000000": 18816, "60.000000": 19072, "70.000000": 19584, "80.000000": 20352, "90.000000": 22144, "95.000000": 26752, "99.000000": 98816, "99.500000": 127488, "99.900000": 187392, "99.950000": 216064, "99.990000": 708608}}, "lat_ns": {"min": 496577, "max": 5535529, "mean": 564250.541375, "stddev": 89064.293548, "N": 8713}, "bw_min": 422489, "bw_max": 453061, "bw_agg": 100.0, "bw_mean": 446201.8, "bw_dev": 13275.71093, "bw_samples": 5, "iops_min": 1650, "iops_max": 1768, "iops_mean": 1742.4, "iops_stddev": 51.713635, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.46, "sys_cpu": 93.5, "ctx": 20, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 75.921038, "50": 21.99013, "100": 1.124756, "250": 0.9526, "500": 0.0, "750": 0.011477, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:38.455294 2026-04-19 19:16:23.943354 +163 2 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628849, "timestamp_ms": 1776628849961, "time": "Sun Apr 19 20:00:49 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "job_start": 1776628844734, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1810497536, "io_kbytes": 1768064, "bw_bytes": 362027101, "bw": 353542, "iops": 5524.095181, "runtime": 5001, "total_ios": 27626, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131599, "max": 1636561, "mean": 155140.314233, "stddev": 34933.248784, "N": 27626}, "clat_ns": {"min": 14640, "max": 722666, "mean": 18330.300948, "stddev": 13316.099488, "N": 27626, "percentile": {"1.000000": 14784, "5.000000": 14912, "10.000000": 14912, "20.000000": 15040, "30.000000": 15040, "40.000000": 15168, "50.000000": 15552, "60.000000": 16064, "70.000000": 17024, "80.000000": 18304, "90.000000": 20864, "95.000000": 25984, "99.000000": 85504, "99.500000": 107008, "99.900000": 175104, "99.950000": 214016, "99.990000": 337920}}, "lat_ns": {"min": 146619, "max": 1677641, "mean": 173470.615181, "stddev": 39335.333586, "N": 27626}, "bw_min": 339731, "bw_max": 365248, "bw_agg": 100.0, "bw_mean": 353714.0, "bw_dev": 9829.22853, "bw_samples": 5, "iops_min": 5308, "iops_max": 5707, "iops_mean": 5526.6, "iops_stddev": 153.090823, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 13.18, "sys_cpu": 86.74, "ctx": 22, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 87.609498, "50": 10.805039, "100": 0.944762, "250": 0.622602, "500": 0.014479, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:44.256237 2026-04-19 19:16:23.943354 +207 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 834 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 1561821, "real_time_secs": 23.76, "usr_time_secs": 72.41, "sys_time_secs": 33.96, "bogo_ops_s_real_time": 65745.84, "bogo_ops_s_usr_sys_time": 14682.0, "cpu_used_per_instance": 0.55, "rss_max_kb": 7196, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 834, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:19:04.038366 2026-04-19 19:16:23.943354 +208 3 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:21:03.02138 2026-04-19 20:21:03.021382 +209 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:09:15' --until '2026-04-19 20:21:01' 135 OOM records. 2026-04-19 20:09:15.044228 2026-04-19 20:21:01.109019 +164 2 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628856, "timestamp_ms": 1776628856019, "time": "Sun Apr 19 20:00:56 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "job_start": 1776628850793, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_1M", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 2671771648, "io_kbytes": 2609152, "bw_bytes": 534033909, "bw": 521517, "iops": 509.294423, "runtime": 5003, "total_ios": 2548, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1793820, "max": 5094142, "mean": 1923885.14325, "stddev": 114807.990313, "N": 2548}, "clat_ns": {"min": 19460, "max": 818125, "mean": 26344.594192, "stddev": 23786.157557, "N": 2548, "percentile": {"1.000000": 19840, "5.000000": 20352, "10.000000": 20608, "20.000000": 20864, "30.000000": 21120, "40.000000": 21632, "50.000000": 22144, "60.000000": 22912, "70.000000": 23680, "80.000000": 24960, "90.000000": 27520, "95.000000": 33536, "99.000000": 142336, "99.500000": 164864, "99.900000": 199680, "99.950000": 211968, "99.990000": 815104}}, "lat_ns": {"min": 1813600, "max": 5143252, "mean": 1950229.737441, "stddev": 117333.231106, "N": 2548}, "bw_min": 505350, "bw_max": 530432, "bw_agg": 100.0, "bw_mean": 521938.8, "bw_dev": 10269.898719, "bw_samples": 5, "iops_min": 493, "iops_max": 518, "iops_mean": 509.4, "iops_stddev": 10.163661, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 2.538984, "sys_cpu": 97.361056, "ctx": 24, "majf": 0, "minf": 300, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 1.138148, "50": 95.44741, "100": 1.648352, "250": 1.726845, "500": 0.0, "750": 0.0, "1000": 0.039246}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:50.064887 2026-04-19 19:16:23.943354 +165 2 loader /usr/bin/fio --name seq_read_64k --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628862, "timestamp_ms": 1776628862085, "time": "Sun Apr 19 20:01:02 2026", "jobs": [{"jobname": "seq_read_64k", "groupid": 0, "job_start": 1776628856892, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_64k", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/read/bs_64k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 1938292736, "io_kbytes": 1892864, "bw_bytes": 387581030, "bw": 378497, "iops": 5914.017197, "runtime": 5001, "total_ios": 29576, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 123810, "max": 980464, "mean": 143828.274682, "stddev": 32260.29952, "N": 29576}, "clat_ns": {"min": 14870, "max": 682896, "mean": 18114.385279, "stddev": 12778.51444, "N": 29576, "percentile": {"1.000000": 15040, "5.000000": 15040, "10.000000": 15040, "20.000000": 15168, "30.000000": 15168, "40.000000": 15296, "50.000000": 15424, "60.000000": 15680, "70.000000": 16320, "80.000000": 18048, "90.000000": 20352, "95.000000": 24448, "99.000000": 83456, "99.500000": 110080, "99.900000": 156672, "99.950000": 191488, "99.990000": 272384}}, "lat_ns": {"min": 138899, "max": 1010554, "mean": 161942.659961, "stddev": 36211.438211, "N": 29576}, "bw_min": 366033, "bw_max": 395008, "bw_agg": 100.0, "bw_mean": 378699.8, "bw_dev": 10847.491724, "bw_samples": 5, "iops_min": 5721, "iops_max": 6172, "iops_mean": 5916.2, "iops_stddev": 169.601592, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.42, "sys_cpu": 85.52, "ctx": 12, "majf": 0, "minf": 56, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 88.794969, "50": 9.460373, "100": 1.098864, "250": 0.635651, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:00:56.12625 2026-04-19 19:16:23.943354 +166 2 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628867, "timestamp_ms": 1776628867889, "time": "Sun Apr 19 20:01:07 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "job_start": 1776628862664, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_64k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1829634048, "io_kbytes": 1786752, "bw_bytes": 365853638, "bw": 357278, "iops": 5582.483503, "runtime": 5001, "total_ios": 27918, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131879, "max": 783686, "mean": 153151.506483, "stddev": 29992.50466, "N": 27918}, "clat_ns": {"min": 14810, "max": 671186, "mean": 17891.318898, "stddev": 11909.280099, "N": 27918, "percentile": {"1.000000": 14912, "5.000000": 15040, "10.000000": 15040, "20.000000": 15168, "30.000000": 15168, "40.000000": 15296, "50.000000": 15552, "60.000000": 15680, "70.000000": 16512, "80.000000": 18048, "90.000000": 19840, "95.000000": 22912, "99.000000": 83456, "99.500000": 98816, "99.900000": 132096, "99.950000": 154624, "99.990000": 432128}}, "lat_ns": {"min": 147229, "max": 811805, "mean": 171042.825381, "stddev": 33556.72772, "N": 27918}, "bw_min": 347748, "bw_max": 364608, "bw_agg": 100.0, "bw_mean": 357339.2, "bw_dev": 6561.461666, "bw_samples": 5, "iops_min": 5434, "iops_max": 5694, "iops_mean": 5582.8, "iops_stddev": 101.561312, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.78, "sys_cpu": 85.16, "ctx": 20, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 90.210617, "50": 8.134537, "100": 1.174869, "250": 0.462067, "500": 0.014328, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:02.187071 2026-04-19 19:16:23.943354 +167 2 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628873, "timestamp_ms": 1776628873688, "time": "Sun Apr 19 20:01:13 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "job_start": 1776628868474, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_16k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "16k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 964608000, "io_kbytes": 942000, "bw_bytes": 192883023, "bw": 188362, "iops": 11772.645471, "runtime": 5001, "total_ios": 58875, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 48750, "max": 1348832, "mean": 60075.109639, "stddev": 33220.485067, "N": 58875}, "clat_ns": {"min": 14670, "max": 565547, "mean": 17030.639915, "stddev": 9768.984981, "N": 58875, "percentile": {"1.000000": 14784, "5.000000": 14784, "10.000000": 14912, "20.000000": 14912, "30.000000": 15040, "40.000000": 15040, "50.000000": 15168, "60.000000": 15168, "70.000000": 15424, "80.000000": 16064, "90.000000": 18304, "95.000000": 21376, "99.000000": 76288, "99.500000": 88576, "99.900000": 119296, "99.950000": 134144, "99.990000": 205824}}, "lat_ns": {"min": 63649, "max": 1384962, "mean": 77105.749554, "stddev": 35493.006372, "N": 58875}, "bw_min": 179260, "bw_max": 192448, "bw_agg": 100.0, "bw_mean": 188440.6, "bw_dev": 5568.682411, "bw_samples": 5, "iops_min": 11204, "iops_max": 12028, "iops_mean": 11776.2, "iops_stddev": 348.199225, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 29.72, "sys_cpu": 70.16, "ctx": 32, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 93.154989, "50": 5.226327, "100": 1.367304, "250": 0.244586, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:07.985645 2026-04-19 19:16:23.943354 +210 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:09:15' --until '2026-04-19 20:21:01' 1 Systemd errors records 2026-04-19 20:09:15.044228 2026-04-19 20:21:01.109019 +243 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:39:47' --until '2026-04-19 20:40:31' 0 Systemd errors records 2026-04-19 20:39:47.098596 2026-04-19 20:40:31.999596 +5346 172 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-06-15 21:13:56.700848 2026-06-15 21:13:56.70085 +168 2 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628879, "timestamp_ms": 1776628879492, "time": "Sun Apr 19 20:01:19 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "job_start": 1776628874279, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_write_4k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 352731136, "io_kbytes": 344464, "bw_bytes": 70532120, "bw": 68879, "iops": 17219.756049, "runtime": 5001, "total_ios": 86116, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 27520, "max": 586807, "mean": 33836.487366, "stddev": 16742.11744, "N": 86116}, "clat_ns": {"min": 14570, "max": 716836, "mean": 17036.194284, "stddev": 10984.613562, "N": 86116, "percentile": {"1.000000": 14656, "5.000000": 14784, "10.000000": 14784, "20.000000": 14784, "30.000000": 14912, "40.000000": 14912, "50.000000": 14912, "60.000000": 15040, "70.000000": 15168, "80.000000": 15808, "90.000000": 18304, "95.000000": 21888, "99.000000": 81408, "99.500000": 98816, "99.900000": 128512, "99.950000": 144384, "99.990000": 252928}}, "lat_ns": {"min": 42280, "max": 745336, "mean": 50872.68165, "stddev": 21158.33811, "N": 86116}, "bw_min": 67060, "bw_max": 69976, "bw_agg": 100.0, "bw_mean": 68904.6, "bw_dev": 1208.307411, "bw_samples": 5, "iops_min": 16757, "iops_max": 17494, "iops_mean": 17224.8, "iops_stddev": 305.225654, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 42.34, "sys_cpu": 57.54, "ctx": 34, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 92.68777, "50": 5.59594, "100": 1.24251, "250": 0.462167, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:13.788925 2026-04-19 19:16:23.943354 +169 2 loader /usr/bin/fio --name rand_read_16k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628885, "timestamp_ms": 1776628885812, "time": "Sun Apr 19 20:01:25 2026", "jobs": [{"jobname": "rand_read_16k", "groupid": 0, "job_start": 1776628880538, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_read_16k", "numjobs": "1", "size": "100MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "16k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_16k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 1081245696, "io_kbytes": 1055904, "bw_bytes": 216205898, "bw": 211138, "iops": 13196.160768, "runtime": 5001, "total_ios": 65994, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 45200, "max": 479118, "mean": 52565.721353, "stddev": 17415.383298, "N": 65994}, "clat_ns": {"min": 14560, "max": 661126, "mean": 16655.010304, "stddev": 9632.587457, "N": 65994, "percentile": {"1.000000": 14656, "5.000000": 14784, "10.000000": 14784, "20.000000": 14784, "30.000000": 14784, "40.000000": 14784, "50.000000": 14912, "60.000000": 14912, "70.000000": 15040, "80.000000": 15424, "90.000000": 17792, "95.000000": 20608, "99.000000": 74240, "99.500000": 87552, "99.900000": 116224, "99.950000": 132096, "99.990000": 248832}}, "lat_ns": {"min": 60040, "max": 708416, "mean": 69220.731657, "stddev": 20817.251229, "N": 65994}, "bw_min": 204147, "bw_max": 213925, "bw_agg": 100.0, "bw_mean": 211215.2, "bw_dev": 3992.529486, "bw_samples": 5, "iops_min": 12762, "iops_max": 13364, "iops_mean": 13200.2, "iops_stddev": 247.204773, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 30.24, "sys_cpu": 69.68, "ctx": 22, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 94.225233, "50": 4.1625, "100": 1.365276, "250": 0.239416, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:19.591034 2026-04-19 19:16:23.943354 +170 2 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --size 100MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260419-200032Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628892, "timestamp_ms": 1776628892367, "time": "Sun Apr 19 20:01:32 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "job_start": 1776628887053, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "rand_read_4k", "numjobs": "1", "size": "100MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260419-200032Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260419-200032Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 379736064, "io_kbytes": 370836, "bw_bytes": 75932026, "bw": 74152, "iops": 18538.092382, "runtime": 5001, "total_ios": 92709, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 25040, "max": 508008, "mean": 30540.354701, "stddev": 14894.443406, "N": 92709}, "clat_ns": {"min": 14510, "max": 555497, "mean": 16717.415386, "stddev": 9866.524999, "N": 92709, "percentile": {"1.000000": 14656, "5.000000": 14656, "10.000000": 14656, "20.000000": 14784, "30.000000": 14784, "40.000000": 14784, "50.000000": 14784, "60.000000": 14912, "70.000000": 14912, "80.000000": 15552, "90.000000": 17536, "95.000000": 21120, "99.000000": 77312, "99.500000": 90624, "99.900000": 122368, "99.950000": 134144, "99.990000": 187392}}, "lat_ns": {"min": 39670, "max": 583267, "mean": 47257.770087, "stddev": 18890.461697, "N": 92709}, "bw_min": 69894, "bw_max": 77292, "bw_agg": 100.0, "bw_mean": 74175.4, "bw_dev": 3047.886284, "bw_samples": 5, "iops_min": 17482, "iops_max": 19323, "iops_mean": 18544.0, "iops_stddev": 760.377867, "iops_samples": 5}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 43.28, "sys_cpu": 56.68, "ctx": 11, "majf": 0, "minf": 46, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 93.662967, "50": 4.636012, "100": 1.394687, "250": 0.304178, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:25.909026 2026-04-19 19:16:23.943354 +171 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:01:32.991915 2026-04-19 20:01:32.991919 +172 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:00:32' --until '2026-04-19 20:01:32' 0 OOM records. 2026-04-19 20:00:32.18055 2026-04-19 20:01:32.71586 +173 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:00:32' --until '2026-04-19 20:01:32' 0 Systemd errors records 2026-04-19 20:00:32.18055 2026-04-19 20:01:32.71586 +174 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628904, "timestamp_ms": 1776628904369, "time": "Sun Apr 19 20:01:44 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628895164, "error": 0, "eta": 0, "elapsed": 10, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4482662400, "io_kbytes": 4377600, "bw_bytes": 497907630, "bw": 486237, "iops": 474.841719, "runtime": 9003, "total_ios": 4275, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1916010, "max": 46282434, "mean": 2068500.060585, "stddev": 957094.51087, "N": 4275}, "clat_ns": {"min": 19700, "max": 1159083, "mean": 24474.277427, "stddev": 25939.767682, "N": 4275, "percentile": {"1.000000": 20096, "5.000000": 20352, "10.000000": 20608, "20.000000": 20864, "30.000000": 21120, "40.000000": 21376, "50.000000": 21888, "60.000000": 22144, "70.000000": 22912, "80.000000": 24192, "90.000000": 26240, "95.000000": 29568, "99.000000": 73216, "99.500000": 156672, "99.900000": 254976, "99.950000": 261120, "99.990000": 1155072}}, "lat_ns": {"min": 1935940, "max": 46311594, "mean": 2092974.338012, "stddev": 962592.974691, "N": 4275}, "bw_min": 395892, "bw_max": 503287, "bw_agg": 100.0, "bw_mean": 486404.555556, "bw_dev": 34405.583261, "bw_samples": 9, "iops_min": 387, "iops_max": 491, "iops_mean": 474.777778, "iops_stddev": 33.375806, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 9002, "usr_cpu": 1.944012, "sys_cpu": 97.978227, "ctx": 54, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.608187, "50": 98.245614, "100": 0.350877, "250": 0.678363, "500": 0.070175, "750": 0.0, "1000": 0.023392}, "latency_ms": {"2": 0.023392, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:34.639396 2026-04-19 19:16:23.943354 +175 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628914, "timestamp_ms": 1776628914214, "time": "Sun Apr 19 20:01:54 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776628904994, "error": 0, "eta": 0, "elapsed": 10, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4186963968, "io_kbytes": 4088832, "bw_bytes": 465166533, "bw": 454264, "iops": 1774.469503, "runtime": 9001, "total_ios": 15972, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 473038, "max": 7455328, "mean": 533920.226208, "stddev": 74317.725559, "N": 15972}, "clat_ns": {"min": 15880, "max": 819605, "mean": 20432.451352, "stddev": 15654.398037, "N": 15972, "percentile": {"1.000000": 16064, "5.000000": 16192, "10.000000": 16320, "20.000000": 16512, "30.000000": 17024, "40.000000": 17792, "50.000000": 18048, "60.000000": 18560, "70.000000": 19072, "80.000000": 19840, "90.000000": 21888, "95.000000": 25472, "99.000000": 97792, "99.500000": 125440, "99.900000": 177152, "99.950000": 201728, "99.990000": 602112}}, "lat_ns": {"min": 489117, "max": 7477488, "mean": 554352.677561, "stddev": 76318.451121, "N": 15972}, "bw_min": 440903, "bw_max": 461312, "bw_agg": 100.0, "bw_mean": 454467.222222, "bw_dev": 5998.267516, "bw_samples": 9, "iops_min": 1722, "iops_max": 1802, "iops_mean": 1774.777778, "iops_stddev": 23.557259, "iops_samples": 9}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 9000, "usr_cpu": 6.622222, "sys_cpu": 93.3, "ctx": 51, "majf": 0, "minf": 43, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 82.206361, "50": 15.777611, "100": 1.089406, "250": 0.907839, "500": 0.01, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:44.515257 2026-04-19 19:16:23.943354 +176 2 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628923, "timestamp_ms": 1776628923016, "time": "Sun Apr 19 20:02:03 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "job_start": 1776628914796, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2974023680, "io_kbytes": 2904320, "bw_bytes": 371706496, "bw": 362994, "iops": 5671.791026, "runtime": 8001, "total_ios": 45380, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131240, "max": 3717399, "mean": 151977.062208, "stddev": 34901.72011, "N": 45380}, "clat_ns": {"min": 14610, "max": 713356, "mean": 17357.728405, "stddev": 11569.448516, "N": 45380, "percentile": {"1.000000": 14784, "5.000000": 14784, "10.000000": 14912, "20.000000": 14912, "30.000000": 15040, "40.000000": 15168, "50.000000": 15168, "60.000000": 15424, "70.000000": 16064, "80.000000": 17536, "90.000000": 18816, "95.000000": 21632, "99.000000": 76288, "99.500000": 99840, "99.900000": 154624, "99.950000": 181248, "99.990000": 284672}}, "lat_ns": {"min": 146129, "max": 3739429, "mean": 169334.790613, "stddev": 37846.643577, "N": 45380}, "bw_min": 351391, "bw_max": 371136, "bw_agg": 100.0, "bw_mean": 363106.0, "bw_dev": 5820.321812, "bw_samples": 8, "iops_min": 5487, "iops_max": 5799, "iops_mean": 5673.25, "iops_stddev": 91.654242, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 12.2625, "sys_cpu": 87.625, "ctx": 50, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 92.904363, "50": 5.740414, "100": 0.872631, "250": 0.467166, "500": 0.011018, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:01:54.312959 2026-04-19 19:16:23.943354 +177 2 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628931, "timestamp_ms": 1776628931819, "time": "Sun Apr 19 20:02:11 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "job_start": 1776628923593, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_64k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 2937782272, "io_kbytes": 2868928, "bw_bytes": 367176886, "bw": 358571, "iops": 5602.674666, "runtime": 8001, "total_ios": 44827, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 132259, "max": 992124, "mean": 152751.688982, "stddev": 30525.488478, "N": 44827}, "clat_ns": {"min": 14960, "max": 661697, "mean": 17890.15455, "stddev": 10929.223749, "N": 44827, "percentile": {"1.000000": 15168, "5.000000": 15168, "10.000000": 15168, "20.000000": 15296, "30.000000": 15296, "40.000000": 15424, "50.000000": 15552, "60.000000": 15808, "70.000000": 16512, "80.000000": 17792, "90.000000": 19584, "95.000000": 22656, "99.000000": 81408, "99.500000": 94720, "99.900000": 130560, "99.950000": 154624, "99.990000": 257024}}, "lat_ns": {"min": 147599, "max": 1021424, "mean": 170641.843532, "stddev": 33942.82441, "N": 44827}, "bw_min": 339756, "bw_max": 365504, "bw_agg": 100.0, "bw_mean": 358684.25, "bw_dev": 8285.623155, "bw_samples": 8, "iops_min": 5311, "iops_max": 5711, "iops_mean": 5604.125, "iops_stddev": 128.446139, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 15.1, "sys_cpu": 84.8625, "ctx": 13, "majf": 0, "minf": 40, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 90.900573, "50": 7.390635, "100": 1.305017, "250": 0.392621, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:02:03.117323 2026-04-19 19:16:23.943354 +178 2 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628940, "timestamp_ms": 1776628940640, "time": "Sun Apr 19 20:02:20 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "job_start": 1776628932426, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_16k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "16k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1543716864, "io_kbytes": 1507536, "bw_bytes": 192940490, "bw": 188418, "iops": 11776.152981, "runtime": 8001, "total_ios": 94221, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 49009, "max": 779316, "mean": 60423.609015, "stddev": 35313.58039, "N": 94221}, "clat_ns": {"min": 14720, "max": 762115, "mean": 17194.096019, "stddev": 11295.777618, "N": 94221, "percentile": {"1.000000": 14912, "5.000000": 14912, "10.000000": 14912, "20.000000": 14912, "30.000000": 15040, "40.000000": 15040, "50.000000": 15040, "60.000000": 15040, "70.000000": 15296, "80.000000": 15936, "90.000000": 18304, "95.000000": 22400, "99.000000": 78336, "99.500000": 93696, "99.900000": 142336, "99.950000": 171008, "99.990000": 301056}}, "lat_ns": {"min": 63930, "max": 818025, "mean": 77617.705034, "stddev": 38232.975371, "N": 94221}, "bw_min": 177904, "bw_max": 193792, "bw_agg": 100.0, "bw_mean": 188510.0, "bw_dev": 5528.477316, "bw_samples": 8, "iops_min": 11119, "iops_max": 12112, "iops_mean": 11781.0, "iops_stddev": 345.035402, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 30.5375, "sys_cpu": 69.3625, "ctx": 47, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 93.039768, "50": 5.353371, "100": 1.219473, "250": 0.367222, "500": 0.018043, "750": 0.01, "1000": 0.01}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:02:11.927484 2026-04-19 19:16:23.943354 +211 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 2.0, "stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 94687, "real_time_secs": 33.25, "usr_time_secs": 14.04, "sys_time_secs": 15.8, "bogo_ops_s_real_time": 2847.75, "bogo_ops_s_usr_sys_time": 3173.21, "cpu_used_per_instance": 22.44, "rss_max_kb": 665252, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:21:09.656872 2026-04-19 19:16:23.943354 +179 2 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/scaling-20260419-200134Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776628949, "timestamp_ms": 1776628949451, "time": "Sun Apr 19 20:02:29 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "job_start": 1776628941244, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_4k", "numjobs": "1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/scaling-20260419-200134Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/scaling-20260419-200134Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 585805824, "io_kbytes": 572076, "bw_bytes": 73216575, "bw": 71500, "iops": 17875.140607, "runtime": 8001, "total_ios": 143019, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 27129, "max": 545997, "mean": 32633.653249, "stddev": 15883.829727, "N": 143019}, "clat_ns": {"min": 14420, "max": 545357, "mean": 16489.234969, "stddev": 10221.146067, "N": 143019, "percentile": {"1.000000": 14528, "5.000000": 14656, "10.000000": 14656, "20.000000": 14656, "30.000000": 14656, "40.000000": 14656, "50.000000": 14784, "60.000000": 14784, "70.000000": 14784, "80.000000": 15040, "90.000000": 16512, "95.000000": 19328, "99.000000": 80384, "99.500000": 93696, "99.900000": 123392, "99.950000": 144384, "99.990000": 228352}}, "lat_ns": {"min": 41870, "max": 573617, "mean": 49122.888218, "stddev": 19920.897763, "N": 143019}, "bw_min": 64811, "bw_max": 73696, "bw_agg": 99.962851, "bw_mean": 71474.0, "bw_dev": 2948.467835, "bw_samples": 8, "iops_min": 16202, "iops_max": 18424, "iops_mean": 17867.5, "iops_stddev": 737.992063, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8000, "usr_cpu": 41.75, "sys_cpu": 58.1625, "ctx": 39, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 95.439068, "50": 2.942266, "100": 1.277453, "250": 0.334221, "500": 0.01, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:02:20.744496 2026-04-19 19:16:23.943354 +180 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:02:30.075102 2026-04-19 20:02:30.075105 +181 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:01:34' --until '2026-04-19 20:02:29' 0 OOM records. 2026-04-19 20:01:34.235493 2026-04-19 20:02:29.7984 +182 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:01:34' --until '2026-04-19 20:02:29' 0 Systemd errors records 2026-04-19 20:01:34.235493 2026-04-19 20:02:29.7984 +183 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename /dev/mapper/dust1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-dust-20260419-200238Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 50 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629009, "timestamp_ms": 1776629009073, "time": "Sun Apr 19 20:03:29 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776628958842, "error": 0, "eta": 0, "elapsed": 51, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "/dev/mapper/dust1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-dust-20260419-200238Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "50", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-dust-20260419-200238Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4363124736, "io_kbytes": 4260864, "bw_bytes": 87246790, "bw": 85201, "iops": 83.205023, "runtime": 50009, "total_ios": 4161, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 9690717, "max": 29024240, "mean": 11523988.769767, "stddev": 1004039.604159, "N": 4161}, "clat_ns": {"min": 29430, "max": 1708511, "mean": 472427.97092, "stddev": 215939.669626, "N": 4161, "percentile": {"1.000000": 148480, "5.000000": 201728, "10.000000": 242688, "20.000000": 296960, "30.000000": 337920, "40.000000": 382976, "50.000000": 432128, "60.000000": 485376, "70.000000": 536576, "80.000000": 610304, "90.000000": 774144, "95.000000": 905216, "99.000000": 1155072, "99.500000": 1236992, "99.900000": 1449984, "99.950000": 1548288, "99.990000": 1712128}}, "lat_ns": {"min": 10116664, "max": 30219944, "mean": 11996416.740687, "stddev": 1031128.844691, "N": 4161}, "bw_min": 78769, "bw_max": 88152, "bw_agg": 100.0, "bw_mean": 85243.06, "bw_dev": 1630.507614, "bw_samples": 50, "iops_min": 76, "iops_max": 86, "iops_mean": 83.18, "iops_stddev": 1.662184, "iops_samples": 50}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 50008, "usr_cpu": 0.315949, "sys_cpu": 74.50208, "ctx": 72662, "majf": 0, "minf": 44, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.048065, "100": 0.144196, "250": 10.74261, "500": 52.006729, "750": 26.195626, "1000": 8.050949}, "latency_ms": {"2": 2.811824, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:02:38.34987 2026-04-19 19:16:23.943354 +184 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:03:29.840078 2026-04-19 20:03:29.840081 +185 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:02:31' --until '2026-04-19 20:03:29' 0 OOM records. 2026-04-19 20:02:31.275954 2026-04-19 20:03:29.552531 +186 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:02:31' --until '2026-04-19 20:03:29' 0 Systemd errors records 2026-04-19 20:02:31.275954 2026-04-19 20:03:29.552531 +187 2 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629095, "timestamp_ms": 1776629095166, "time": "Sun Apr 19 20:04:55 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "job_start": 1776629084984, "error": 0, "eta": 0, "elapsed": 11, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "1M", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5242880, "io_kbytes": 5120, "bw_bytes": 522147, "bw": 509, "iops": 0.497958, "runtime": 10041, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 312898, "max": 1074844, "mean": 527266.8, "stddev": 309770.5879, "N": 5}, "clat_ns": {"min": 2004011250, "max": 2007651264, "mean": 2006246573.8, "stddev": 1612889.393975, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2004877312, "40.000000": 2004877312, "50.000000": 2004877312, "60.000000": 2004877312, "70.000000": 2004877312, "80.000000": 2004877312, "90.000000": 2004877312, "95.000000": 2004877312, "99.000000": 2004877312, "99.500000": 2004877312, "99.900000": 2004877312, "99.950000": 2004877312, "99.990000": 2004877312}}, "lat_ns": {"min": 2004411737, "max": 2008057192, "mean": 2006773840.6, "stddev": 1516420.646859, "N": 5}, "bw_min": 1024, "bw_max": 1025, "bw_agg": 100.0, "bw_mean": 1024.5, "bw_dev": 0.57735, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 10040, "usr_cpu": 0.079681, "sys_cpu": 0.039841, "ctx": 6, "majf": 0, "minf": 42, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:04:44.419637 2026-04-19 19:16:23.943354 +212 3 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:21:45.889529 2026-04-19 20:21:45.889533 +213 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:21:08' --until '2026-04-19 20:21:44' 0 OOM records. 2026-04-19 20:21:08.331368 2026-04-19 20:21:44.304327 +214 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:21:08' --until '2026-04-19 20:21:44' 0 Systemd errors records 2026-04-19 20:21:08.331368 2026-04-19 20:21:44.304327 +216 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "memrate", "bogo_ops": 12, "real_time_secs": 33.09, "usr_time_secs": 41.56, "sys_time_secs": 3.01, "bogo_ops_s_real_time": 0.36, "bogo_ops_s_usr_sys_time": 0.27, "cpu_used_per_instance": 33.68, "rss_max_kb": 264264, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:24:09.210566 2026-04-19 19:16:23.943354 +5354 173 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] failed systemd services 2026-06-15 21:14:12.174944 2026-06-15 21:14:12.174946 +188 2 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 9 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629106, "timestamp_ms": 1776629106256, "time": "Sun Apr 19 20:05:06 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "job_start": 1776629095762, "error": 0, "eta": 0, "elapsed": 11, "job options": {"name": "seq_write_256k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "256k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "9", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1310720, "io_kbytes": 1280, "bw_bytes": 128527, "bw": 125, "iops": 0.490292, "runtime": 10198, "total_ios": 5, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 202789, "max": 512978, "mean": 304216.8, "stddev": 123997.912036, "N": 5}, "clat_ns": {"min": 2004103343, "max": 2047405721, "mean": 2038588148.6, "stddev": 19278370.919645, "N": 5, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2055208960, "40.000000": 2055208960, "50.000000": 2055208960, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2004382672, "max": 2047855722, "mean": 2038892365.4, "stddev": 19292947.279459, "N": 5}, "bw_min": 256, "bw_max": 256, "bw_agg": 100.0, "bw_mean": 256.0, "bw_dev": 0.0, "bw_samples": 4, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 10197, "usr_cpu": 0.0, "sys_cpu": 0.049034, "ctx": 6, "majf": 0, "minf": 45, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:04:55.283081 2026-04-19 19:16:23.943354 +189 2 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629115, "timestamp_ms": 1776629115083, "time": "Sun Apr 19 20:05:15 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "job_start": 1776629106837, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "seq_write_64k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 262144, "io_kbytes": 256, "bw_bytes": 32180, "bw": 31, "iops": 0.491039, "runtime": 8146, "total_ios": 4, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 175829, "max": 461058, "mean": 307068.5, "stddev": 131971.667516, "N": 4}, "clat_ns": {"min": 2000608064, "max": 2048026014, "mean": 2035549017.25, "stddev": 23307228.798391, "N": 4, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2038431744, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2001069122, "max": 2048201843, "mean": 2035856085.75, "stddev": 23204714.824754, "N": 4}, "bw_min": 64, "bw_max": 64, "bw_agg": 100.0, "bw_mean": 64.0, "bw_dev": 0.0, "bw_samples": 3, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8146, "usr_cpu": 0.024552, "sys_cpu": 0.036828, "ctx": 5, "majf": 0, "minf": 38, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:05:06.365398 2026-04-19 19:16:23.943354 +190 2 loader /usr/bin/fio --name rand_write_64k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629123, "timestamp_ms": 1776629123910, "time": "Sun Apr 19 20:05:23 2026", "jobs": [{"jobname": "rand_write_64k", "groupid": 0, "job_start": 1776629115661, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_64k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "64k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_64k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 262144, "io_kbytes": 256, "bw_bytes": 32625, "bw": 31, "iops": 0.497822, "runtime": 8035, "total_ios": 4, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 177029, "max": 368708, "mean": 255901.25, "stddev": 86290.63499, "N": 4}, "clat_ns": {"min": 2006370515, "max": 2008442055, "mean": 2007429640.5, "stddev": 846929.395674, "N": 4, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2004877312, "40.000000": 2004877312, "50.000000": 2004877312, "60.000000": 2004877312, "70.000000": 2004877312, "80.000000": 2004877312, "90.000000": 2004877312, "95.000000": 2004877312, "99.000000": 2004877312, "99.500000": 2004877312, "99.900000": 2004877312, "99.950000": 2004877312, "99.990000": 2004877312}}, "lat_ns": {"min": 2006547544, "max": 2008718514, "mean": 2007685541.75, "stddev": 894553.779878, "N": 4}, "bw_min": 64, "bw_max": 64, "bw_agg": 100.0, "bw_mean": 64.0, "bw_dev": 0.0, "bw_samples": 3, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8034, "usr_cpu": 0.024894, "sys_cpu": 0.037341, "ctx": 6, "majf": 0, "minf": 38, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:05:15.192064 2026-04-19 19:16:23.943354 +191 2 loader /usr/bin/fio --name rand_write_16k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 16k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629132, "timestamp_ms": 1776629132738, "time": "Sun Apr 19 20:05:32 2026", "jobs": [{"jobname": "rand_write_16k", "groupid": 0, "job_start": 1776629124491, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_16k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "16k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_16k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 65536, "io_kbytes": 64, "bw_bytes": 8035, "bw": 7, "iops": 0.490436, "runtime": 8156, "total_ios": 4, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 170579, "max": 303148, "mean": 239311.25, "stddev": 68574.774275, "N": 4}, "clat_ns": {"min": 2010145199, "max": 2048027196, "mean": 2037996016.5, "stddev": 18582082.075845, "N": 4, "percentile": {"1.000000": 2004877312, "5.000000": 2004877312, "10.000000": 2004877312, "20.000000": 2004877312, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2038431744, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2010438418, "max": 2048217495, "mean": 2038235327.75, "stddev": 18547163.379098, "N": 4}, "bw_min": 16, "bw_max": 16, "bw_agg": 100.0, "bw_mean": 16.0, "bw_dev": 0.0, "bw_samples": 3, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8155, "usr_cpu": 0.024525, "sys_cpu": 0.036787, "ctx": 5, "majf": 0, "minf": 39, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:05:24.018443 2026-04-19 19:16:23.943354 +215 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 307372, "real_time_secs": 34.19, "usr_time_secs": 29.91, "sys_time_secs": 37.75, "bogo_ops_s_real_time": 8989.41, "bogo_ops_s_usr_sys_time": 4542.39, "cpu_used_per_instance": 49.48, "rss_max_kb": 238792, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 14, "real_time_secs": 34.05, "usr_time_secs": 8.84, "sys_time_secs": 59.19, "bogo_ops_s_real_time": 0.41, "bogo_ops_s_usr_sys_time": 0.21, "cpu_used_per_instance": 49.95, "rss_max_kb": 241352, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:23:33.474217 2026-04-19 19:16:23.943354 +237 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:39:42.25235 2026-04-19 20:39:42.252354 +192 2 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename /dev/mapper/delay1 --size 100MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 8 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.39", "timestamp": 1776629141, "timestamp_ms": 1776629141561, "time": "Sun Apr 19 20:05:41 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "job_start": 1776629133306, "error": 0, "eta": 0, "elapsed": 9, "job options": {"name": "rand_write_4k", "numjobs": "1", "filename": "/dev/mapper/delay1", "size": "100MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/testfiles", "bs": "4k", "iodepth": "1", "group_reporting": "", "time_based": "", "runtime": "8", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/dm-delay-20260419-200444Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 16384, "io_kbytes": 16, "bw_bytes": 2004, "bw": 1, "iops": 0.489416, "runtime": 8173, "total_ios": 4, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 160179, "max": 334668, "mean": 222661.5, "stddev": 78492.055133, "N": 4}, "clat_ns": {"min": 2027583055, "max": 2047909740, "mean": 2042277504.25, "stddev": 9840851.63181, "N": 4, "percentile": {"1.000000": 2021654528, "5.000000": 2021654528, "10.000000": 2021654528, "20.000000": 2021654528, "30.000000": 2038431744, "40.000000": 2038431744, "50.000000": 2038431744, "60.000000": 2055208960, "70.000000": 2055208960, "80.000000": 2055208960, "90.000000": 2055208960, "95.000000": 2055208960, "99.000000": 2055208960, "99.500000": 2055208960, "99.900000": 2055208960, "99.950000": 2055208960, "99.990000": 2055208960}}, "lat_ns": {"min": 2027917723, "max": 2048127729, "mean": 2042500165.75, "stddev": 9768352.038816, "N": 4}, "bw_min": 4, "bw_max": 4, "bw_agg": 100.0, "bw_mean": 4.0, "bw_dev": 0.0, "bw_samples": 3, "iops_min": 1, "iops_max": 1, "iops_mean": 1.0, "iops_stddev": 0.0, "iops_samples": 3}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 8172, "usr_cpu": 0.024474, "sys_cpu": 0.024474, "ctx": 6, "majf": 0, "minf": 41, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 100.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}]} 2026-04-19 20:05:32.845948 2026-04-19 19:16:23.943354 +193 2 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:05:42.513132 2026-04-19 20:05:42.513135 +194 2 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:03:31' --until '2026-04-19 20:05:42' 0 OOM records. 2026-04-19 20:03:31.642574 2026-04-19 20:05:42.187131 +195 2 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:03:31' --until '2026-04-19 20:05:42' 0 Systemd errors records 2026-04-19 20:03:31.642574 2026-04-19 20:05:42.187131 +196 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics --vm-populate {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 114280, "real_time_secs": 33.28, "usr_time_secs": 9.23, "sys_time_secs": 5.78, "bogo_ops_s_real_time": 3433.5, "bogo_ops_s_usr_sys_time": 7613.66, "cpu_used_per_instance": 11.27, "rss_max_kb": 236316, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 4, "real_time_secs": 35.38, "usr_time_secs": 1.29, "sys_time_secs": 15.39, "bogo_ops_s_real_time": 0.11, "bogo_ops_s_usr_sys_time": 0.24, "cpu_used_per_instance": 11.78, "rss_max_kb": 239272, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:07:58.310051 2026-04-19 19:16:23.943354 +197 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --memrate 0 --memrate-rd-mbs 500 --memrate-wr-mbs 1000 --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "memrate", "bogo_ops": 3, "real_time_secs": 33.01, "usr_time_secs": 8.68, "sys_time_secs": 0.1, "bogo_ops_s_real_time": 0.09, "bogo_ops_s_usr_sys_time": 0.34, "cpu_used_per_instance": 26.6, "rss_max_kb": 265616, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:08:34.566304 2026-04-19 19:16:23.943354 +198 3 loader null 2026-04-19 19:16:23.943343 2026-04-19 19:16:23.943354 +199 3 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:09:10.301925 2026-04-19 20:09:10.301928 +200 3 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:07:57' --until '2026-04-19 20:09:08' 0 OOM records. 2026-04-19 20:07:57.671641 2026-04-19 20:09:08.656701 +201 3 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:07:57' --until '2026-04-19 20:09:08' 0 Systemd errors records 2026-04-19 20:07:57.671641 2026-04-19 20:09:08.656701 +202 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 156087, "real_time_secs": 33.32, "usr_time_secs": 9.73, "sys_time_secs": 5.22, "bogo_ops_s_real_time": 4684.7, "bogo_ops_s_usr_sys_time": 10443.94, "cpu_used_per_instance": 11.21, "rss_max_kb": 181136, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 8, "real_time_secs": 35.51, "usr_time_secs": 1.38, "sys_time_secs": 15.36, "bogo_ops_s_real_time": 0.23, "bogo_ops_s_usr_sys_time": 0.48, "cpu_used_per_instance": 11.79, "rss_max_kb": 183988, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:09:16.847365 2026-04-19 19:16:23.943354 +203 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 107487, "real_time_secs": 33.5, "usr_time_secs": 9.19, "sys_time_secs": 6.46, "bogo_ops_s_real_time": 3208.98, "bogo_ops_s_usr_sys_time": 6869.74, "cpu_used_per_instance": 11.68, "rss_max_kb": 250488, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 4, "real_time_secs": 36.6, "usr_time_secs": 1.17, "sys_time_secs": 15.66, "bogo_ops_s_real_time": 0.11, "bogo_ops_s_usr_sys_time": 0.24, "cpu_used_per_instance": 11.5, "rss_max_kb": 253572, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:09:53.005483 2026-04-19 19:16:23.943354 +204 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 4M --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 1196882, "real_time_secs": 27.09, "usr_time_secs": 95.1, "sys_time_secs": 7.68, "bogo_ops_s_real_time": 44179.84, "bogo_ops_s_usr_sys_time": 11645.78, "cpu_used_per_instance": 0.39, "rss_max_kb": 5816, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:10:30.399958 2026-04-19 19:16:23.943354 +205 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 1G --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 2130646, "real_time_secs": 33.75, "usr_time_secs": 118.32, "sys_time_secs": 46.01, "bogo_ops_s_real_time": 63125.39, "bogo_ops_s_usr_sys_time": 12965.62, "cpu_used_per_instance": 0.48, "rss_max_kb": 2960, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:12:32.813557 2026-04-19 19:16:23.943354 +206 3 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "mmaphuge", "bogo_ops": 1998, "real_time_secs": 29.38, "usr_time_secs": 3.51, "sys_time_secs": 118.36, "bogo_ops_s_real_time": 68.01, "bogo_ops_s_usr_sys_time": 16.39, "cpu_used_per_instance": 0.57, "rss_max_kb": 300796, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:15:25.961677 2026-04-19 19:16:23.943354 +238 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:39:06' --until '2026-04-19 20:39:40' 0 OOM records. 2026-04-19 20:39:06.022792 2026-04-19 20:39:40.59023 +217 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaptorture 0 --mmaptorture-bytes 70% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "mmaptorture", "bogo_ops": 321, "real_time_secs": 34.03, "usr_time_secs": 7.63, "sys_time_secs": 43.46, "bogo_ops_s_real_time": 9.43, "bogo_ops_s_usr_sys_time": 6.28, "cpu_used_per_instance": 37.53, "rss_max_kb": 14168, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:24:42.476005 2026-04-19 19:16:23.943354 +218 4 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:25:17.399776 2026-04-19 20:25:17.39978 +219 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:23:33' --until '2026-04-19 20:25:17' 0 OOM records. 2026-04-19 20:23:33.357956 2026-04-19 20:25:17.155484 +220 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:23:33' --until '2026-04-19 20:25:17' 0 Systemd errors records 2026-04-19 20:23:33.357956 2026-04-19 20:25:17.155484 +221 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 25% --mmap 4 --mmap-bytes 25% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 331544, "real_time_secs": 33.06, "usr_time_secs": 26.17, "sys_time_secs": 37.96, "bogo_ops_s_real_time": 10027.11, "bogo_ops_s_usr_sys_time": 5169.47, "cpu_used_per_instance": 48.49, "rss_max_kb": 176032, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 18, "real_time_secs": 33.47, "usr_time_secs": 8.53, "sys_time_secs": 58.72, "bogo_ops_s_real_time": 0.54, "bogo_ops_s_usr_sys_time": 0.27, "cpu_used_per_instance": 50.23, "rss_max_kb": 178388, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:25:18.876074 2026-04-19 19:16:23.943354 +222 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 35% --mmap 4 --mmap-bytes 35% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 290781, "real_time_secs": 33.62, "usr_time_secs": 28.62, "sys_time_secs": 36.5, "bogo_ops_s_real_time": 8649.02, "bogo_ops_s_usr_sys_time": 4464.84, "cpu_used_per_instance": 48.43, "rss_max_kb": 225320, "top10_slowest": null}, {"stressor": "mmap", "bogo_ops": 14, "real_time_secs": 33.81, "usr_time_secs": 8.97, "sys_time_secs": 58.92, "bogo_ops_s_real_time": 0.41, "bogo_ops_s_usr_sys_time": 0.21, "cpu_used_per_instance": 50.2, "rss_max_kb": 227848, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:25:53.329065 2026-04-19 19:16:23.943354 +223 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 4M --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 3711005, "real_time_secs": 33.98, "usr_time_secs": 364.46, "sys_time_secs": 123.24, "bogo_ops_s_real_time": 109225.4, "bogo_ops_s_usr_sys_time": 7609.15, "cpu_used_per_instance": 1.4, "rss_max_kb": 2600, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:26:27.459519 2026-04-19 19:16:23.943354 +224 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 1024 --vm-method all --vm-bytes 1G --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 5909102, "real_time_secs": 33.54, "usr_time_secs": 281.36, "sys_time_secs": 224.28, "bogo_ops_s_real_time": 176168.35, "bogo_ops_s_usr_sys_time": 11686.29, "cpu_used_per_instance": 1.47, "rss_max_kb": 3624, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:28:32.470249 2026-04-19 19:16:23.943354 +225 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"stress_ng_metrics": [], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:30:41.352193 2026-04-19 19:16:23.943354 +226 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 834 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 3192552, "real_time_secs": 33.57, "usr_time_secs": 197.35, "sys_time_secs": 219.43, "bogo_ops_s_real_time": 95115.46, "bogo_ops_s_usr_sys_time": 7660.04, "cpu_used_per_instance": 1.49, "rss_max_kb": 4920, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 834, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:31:57.560973 2026-04-19 19:16:23.943354 +227 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --mmaphuge 1024 --syscall-method all --verify --metrics {"stress_ng_metrics": [], "stress_ng_summary": {"skipped": -1, "passed": 1024, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:33:44.089804 2026-04-19 19:16:23.943354 +228 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 630 --vm-method all --vm-bytes 70% --syscall-method all --verify --metrics {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 2354123, "real_time_secs": 30.95, "usr_time_secs": 143.02, "sys_time_secs": 170.36, "bogo_ops_s_real_time": 76067.09, "bogo_ops_s_usr_sys_time": 7511.94, "cpu_used_per_instance": 1.61, "rss_max_kb": 5788, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 630, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:34:56.256883 2026-04-19 19:16:23.943354 +229 4 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:36:16.645046 2026-04-19 20:36:16.645049 +230 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:25:18' --until '2026-04-19 20:36:16' 76 OOM records. 2026-04-19 20:25:18.600188 2026-04-19 20:36:16.284552 +231 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:25:18' --until '2026-04-19 20:36:16' 0 Systemd errors records 2026-04-19 20:25:18.600188 2026-04-19 20:36:16.284552 +232 4 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 4 --vm-method all --vm-bytes 95% --syscall-method all --verify --metrics {"pgscan_time_sec": 1.0, "stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 751525, "real_time_secs": 33.18, "usr_time_secs": 57.96, "sys_time_secs": 73.16, "bogo_ops_s_real_time": 22646.84, "bogo_ops_s_usr_sys_time": 5731.66, "cpu_used_per_instance": 98.78, "rss_max_kb": 678928, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:36:18.347472 2026-04-19 19:16:23.943354 +233 4 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:36:52.127888 2026-04-19 20:36:52.127891 +234 4 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:36:18' --until '2026-04-19 20:36:51' 0 OOM records. 2026-04-19 20:36:18.103718 2026-04-19 20:36:51.863923 +235 4 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:36:18' --until '2026-04-19 20:36:51' 0 Systemd errors records 2026-04-19 20:36:18.103718 2026-04-19 20:36:51.863923 +236 5 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 17346, "real_time_secs": 33.34, "usr_time_secs": 2.88, "sys_time_secs": 3.84, "bogo_ops_s_real_time": 520.29, "bogo_ops_s_usr_sys_time": 2579.53, "cpu_used_per_instance": 20.17, "rss_max_kb": 3712, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:39:06.699127 2026-04-19 19:16:23.943354 +244 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 50 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:40:50.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 528, "real_time_secs": 33.22, "usr_time_secs": 14.65, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 15.9, "bogo_ops_s_usr_sys_time": 35.92, "cpu_used_per_instance": 44.26, "rss_max_kb": 4116, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 588, "real_time_secs": 33.91, "usr_time_secs": 0.13, "sys_time_secs": 0.15, "bogo_ops_s_real_time": 17.34, "bogo_ops_s_usr_sys_time": 2107.2, "cpu_used_per_instance": 0.82, "rss_max_kb": 3584, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abozzRhuF as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.33945655822753906, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.9904880523681641, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc3usp1j as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 40215\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3770751953125, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.2871878147125244, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 45397\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 43291\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 35385\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3323814868927002, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09198760986328125, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09442758560180664, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10085773468017578, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.16647076606750488, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.2604184150695801, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.25769829750061035, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.17670059204101562, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.29181861877441406, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09711551666259766, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2999100685119629, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.15369057655334473, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09472393989562988, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1671910285949707, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3026909828186035, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.28894543647766113, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4168663024902344, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.2994577884674072, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.2341830730438232, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:34: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:30: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.328073501586914, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.7167150974273682, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 15.166532039642334, "passed": 46, "failed": 0, "broken": 1, "skipped": 1484, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:40:49.077926 2026-04-19 20:41:39.090611 +245 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 60 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:41:40.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 270, "real_time_secs": 33.58, "usr_time_secs": 7.63, "sys_time_secs": 0.05, "bogo_ops_s_real_time": 8.04, "bogo_ops_s_usr_sys_time": 35.17, "cpu_used_per_instance": 22.86, "rss_max_kb": 2784, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 16758, "real_time_secs": 33.18, "usr_time_secs": 3.04, "sys_time_secs": 3.34, "bogo_ops_s_real_time": 505.12, "bogo_ops_s_usr_sys_time": 2625.75, "cpu_used_per_instance": 19.24, "rss_max_kb": 5780, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abooYT6nU as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.7990641593933105, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5660922527313232, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accdphppm as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 34129\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.615257740020752, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.7248566150665283, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 44493\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46281\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42809\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6242289543151855, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.16867685317993164, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09119892120361328, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.0909881591796875, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12180542945861816, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.7762024402618408, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.2628507614135742, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1340639591217041, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4871666431427002, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.17911028861999512, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5711729526519775, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13968658447265625, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1379075050354004, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13399147987365723, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5765445232391357, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6920943260192871, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.31184816360473633, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.299072027206421, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "conf", "test": {"command": "alarm06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "alarm07", "status": "conf", "test": {"command": "alarm07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "arch_prctl01", "status": "conf", "test": {"command": "arch_prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 10.503880739212036, "passed": 38, "failed": 0, "broken": 1, "skipped": 1487, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:41:39.103042 2026-04-19 20:42:39.118563 +246 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 70 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:42:40.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 292, "real_time_secs": 33.35, "usr_time_secs": 8.24, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 8.75, "bogo_ops_s_usr_sys_time": 35.37, "cpu_used_per_instance": 24.75, "rss_max_kb": 4656, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 11172, "real_time_secs": 33.24, "usr_time_secs": 1.96, "sys_time_secs": 2.46, "bogo_ops_s_real_time": 336.14, "bogo_ops_s_usr_sys_time": 2528.13, "cpu_used_per_instance": 13.3, "rss_max_kb": 4272, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboPN98CA as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.48690223693847656, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.43616557121276855, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accW7mfn5 as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 37443\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.48399782180786133, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.6206459999084473, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 44291\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 44131\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 41001\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.46086764335632324, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13055849075317383, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.2523467540740967, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.14464259147644043, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13882660865783691, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.5290014743804932, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.4581148624420166, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.16460657119750977, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4362032413482666, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10234332084655762, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.46937108039855957, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09119796752929688, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10152173042297363, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.0966651439666748, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2919294834136963, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2884800434112549, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3343195915222168, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.4502453804016113, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.3782670497894287, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "conf", "test": {"command": "alarm07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "arch_prctl01", "status": "conf", "test": {"command": "arch_prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 12.347220659255981, "passed": 40, "failed": 0, "broken": 1, "skipped": 1486, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:42:39.129606 2026-04-19 20:43:44.145384 +247 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 80 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:43:45.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 270, "real_time_secs": 33.43, "usr_time_secs": 7.67, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 8.08, "bogo_ops_s_usr_sys_time": 35.18, "cpu_used_per_instance": 22.96, "rss_max_kb": 4252, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 16758, "real_time_secs": 33.38, "usr_time_secs": 3.13, "sys_time_secs": 3.48, "bogo_ops_s_real_time": 502.0, "bogo_ops_s_usr_sys_time": 2535.06, "cpu_used_per_instance": 19.8, "rss_max_kb": 3712, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboOLNJ9m as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.8203921318054199, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5674910545349121, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accnTzR2E as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 37351\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6144359111785889, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.6288518905639648, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 45565\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42077\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 35235\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.44545555114746094, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.17003226280212402, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10242533683776855, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12328171730041504, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13011646270751953, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.41965556144714355, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.25578832626342773, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.08969736099243164, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.30313634872436523, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09198856353759766, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2946019172668457, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09651827812194824, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.14462900161743164, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.09428739547729492, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3008275032043457, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2985706329345703, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3016395568847656, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.354055881500244, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.2927041053771973, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "conf", "test": {"command": "alarm07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "arch_prctl01", "status": "conf", "test": {"command": "arch_prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 11.940582752227783, "passed": 40, "failed": 0, "broken": 1, "skipped": 1486, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:43:44.158565 2026-04-19 20:44:49.170479 +248 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 90 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:44:50.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 264, "real_time_secs": 33.4, "usr_time_secs": 7.55, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 7.9, "bogo_ops_s_usr_sys_time": 34.83, "cpu_used_per_instance": 22.69, "rss_max_kb": 2608, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 16464, "real_time_secs": 33.28, "usr_time_secs": 3.13, "sys_time_secs": 3.49, "bogo_ops_s_real_time": 494.78, "bogo_ops_s_usr_sys_time": 2489.83, "cpu_used_per_instance": 19.87, "rss_max_kb": 4276, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboSTauaA as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6392436027526855, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5488507747650146, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accIjJkOW as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 35491\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.7234387397766113, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.5727059841156006, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 46797\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42283\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 43305\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4723379611968994, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04628801345825195, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04621720314025879, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.045244693756103516, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.0461885929107666, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1274857521057129, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.1335752010345459, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.045244693756103516, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1542975902557373, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.05233645439147949, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.31844258308410645, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04894304275512695, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04612874984741211, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10501313209533691, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4237220287322998, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.395550012588501, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6573138236999512, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:26: TPASS: alarm(10) passed\\nalarm05.c:28: TPASS: alarm(1) passed\\nalarm05.c:30: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.296178102493286, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:33: TPASS: alarm(0) passed\\nalarm06.c:38: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.2878053188323975, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:34: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:30: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.288118362426758, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\narch_prctl01.c:56: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:64: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.34189391136169434, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binraHUnY as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3440854549407959, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 15.206649780273438, "passed": 53, "failed": 0, "broken": 1, "skipped": 1483, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:44:49.181959 2026-04-19 20:45:54.193748 +249 5 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 100 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/local/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:45:55.json {"stress_ng_metrics": [{"stressor": "cpu", "bogo_ops": 264, "real_time_secs": 33.51, "usr_time_secs": 7.53, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 7.88, "bogo_ops_s_usr_sys_time": 35.0, "cpu_used_per_instance": 22.52, "rss_max_kb": 6296, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 16464, "real_time_secs": 33.54, "usr_time_secs": 3.01, "sys_time_secs": 3.59, "bogo_ops_s_real_time": 490.92, "bogo_ops_s_usr_sys_time": 2496.21, "cpu_used_per_instance": 19.67, "rss_max_kb": 5524, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abonzhgnX as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:60: TPASS: abort() dumped core\\nabort01.c:63: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.9206819534301758, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:91: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:91: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:91: TPASS: invalid salen : EINVAL (22)\\naccept01.c:91: TPASS: no queued connections : EINVAL (22)\\naccept01.c:91: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6032876968383789, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc806PjE as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:129: TINFO: Starting listener on port: 50543\\naccept02.c:73: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.7067348957061768, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "brok", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_fd.c:35: TBROK: open(fd_file,66,0666) failed: EACCES (13)\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 1\\nskipped 0\\nwarnings 0\\n", "retval": ["2"], "duration": 0.7469472885131836, "failed": 0, "passed": 0, "broken": 1, "skipped": 0, "warnings": 0, "result": "brok"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 36653\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 44099\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36735\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.8372886180877686, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "conf", "test": {"command": "access01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.17836689949035645, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access02", "status": "conf", "test": {"command": "access02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13280129432678223, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access03", "status": "conf", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.13299059867858887, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "access04", "status": "conf", "test": {"command": "access04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.2625701427459717, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct01", "status": "conf", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.32536911964416504, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "acct02", "status": "conf", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.36791205406188965, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key01", "status": "conf", "test": {"command": "add_key01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12794733047485352, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4968574047088623, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "conf", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.10864567756652832, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5286397933959961, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "conf", "test": {"command": "add_key05", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.14856863021850586, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex01", "status": "conf", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.12342262268066406, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex02", "status": "conf", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.11580753326416016, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:51: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:60: TINFO: tai : 0x00000000\\nadjtimex03.c:71: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.43511509895324707, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(2147483647) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\nalarm02.c:34: TPASS: alarm(1073741823) passed\\nalarm02.c:36: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6878771781921387, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:28: TPASS: alarm(0) in parent process passed\\nalarm03.c:24: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.44016027450561523, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "conf", "test": {"command": "alarm05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "alarm06", "status": "conf", "test": {"command": "alarm06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "alarm07", "status": "conf", "test": {"command": "alarm07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "arch_prctl01", "status": "conf", "test": {"command": "arch_prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind01", "status": "conf", "test": {"command": "bind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind02", "status": "conf", "test": {"command": "bind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind03", "status": "conf", "test": {"command": "bind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind04", "status": "conf", "test": {"command": "bind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind05", "status": "conf", "test": {"command": "bind05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bind06", "status": "conf", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_map01", "status": "conf", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog01", "status": "conf", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog02", "status": "conf", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog03", "status": "conf", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog04", "status": "conf", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog05", "status": "conf", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog06", "status": "conf", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "bpf_prog07", "status": "conf", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk01", "status": "conf", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "brk02", "status": "conf", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget01", "status": "conf", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capget02", "status": "conf", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset01", "status": "conf", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset02", "status": "conf", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset03", "status": "conf", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "capset04", "status": "conf", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cacheflush01", "status": "conf", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat01", "status": "conf", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat02", "status": "conf", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat03", "status": "conf", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "cachestat04", "status": "conf", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir01", "status": "conf", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chdir04", "status": "conf", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod01", "status": "conf", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod03", "status": "conf", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod05", "status": "conf", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod06", "status": "conf", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod07", "status": "conf", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod08", "status": "conf", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chmod09", "status": "conf", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01", "status": "conf", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown01_16", "status": "conf", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02", "status": "conf", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown02_16", "status": "conf", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03", "status": "conf", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown03_16", "status": "conf", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04", "status": "conf", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown04_16", "status": "conf", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05", "status": "conf", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chown05_16", "status": "conf", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot01", "status": "conf", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot02", "status": "conf", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot03", "status": "conf", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "chroot04", "status": "conf", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime01", "status": "conf", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_adjtime02", "status": "conf", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_getres01", "status": "conf", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep01", "status": "conf", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep02", "status": "conf", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep03", "status": "conf", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_nanosleep04", "status": "conf", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime01", "status": "conf", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime02", "status": "conf", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime03", "status": "conf", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_gettime04", "status": "conf", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "leapsec01", "status": "conf", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime01", "status": "conf", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime02", "status": "conf", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime03", "status": "conf", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clock_settime04", "status": "conf", "test": {"command": "clock_settime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone01", "status": "conf", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone02", "status": "conf", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone03", "status": "conf", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone04", "status": "conf", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone05", "status": "conf", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone06", "status": "conf", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone07", "status": "conf", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone08", "status": "conf", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone09", "status": "conf", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone10", "status": "conf", "test": {"command": "clone10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone11", "status": "conf", "test": {"command": "clone11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone301", "status": "conf", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone302", "status": "conf", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone303", "status": "conf", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "clone304", "status": "conf", "test": {"command": "clone304", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close01", "status": "conf", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close02", "status": "conf", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range01", "status": "conf", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "close_range02", "status": "conf", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "confstr01", "status": "conf", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect01", "status": "conf", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "connect02", "status": "conf", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat01", "status": "conf", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat03", "status": "conf", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat04", "status": "conf", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat05", "status": "conf", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat06", "status": "conf", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat07", "status": "conf", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat08", "status": "conf", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "creat09", "status": "conf", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module01", "status": "conf", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module02", "status": "conf", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "delete_module03", "status": "conf", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup01", "status": "conf", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup02", "status": "conf", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup03", "status": "conf", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup04", "status": "conf", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup05", "status": "conf", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup06", "status": "conf", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup07", "status": "conf", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup201", "status": "conf", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup202", "status": "conf", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup203", "status": "conf", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup204", "status": "conf", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup205", "status": "conf", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup206", "status": "conf", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup207", "status": "conf", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_01", "status": "conf", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dup3_02", "status": "conf", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create01", "status": "conf", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create02", "status": "conf", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_01", "status": "conf", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_create1_02", "status": "conf", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll01", "status": "conf", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl01", "status": "conf", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl02", "status": "conf", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl03", "status": "conf", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl04", "status": "conf", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_ctl05", "status": "conf", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait01", "status": "conf", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait02", "status": "conf", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait03", "status": "conf", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait04", "status": "conf", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait05", "status": "conf", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait06", "status": "conf", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_wait07", "status": "conf", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait01", "status": "conf", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait02", "status": "conf", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait03", "status": "conf", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait04", "status": "conf", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait05", "status": "conf", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "epoll_pwait06", "status": "conf", "test": {"command": "epoll_pwait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd01", "status": "conf", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd02", "status": "conf", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd03", "status": "conf", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd04", "status": "conf", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd05", "status": "conf", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd06", "status": "conf", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_01", "status": "conf", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_02", "status": "conf", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "eventfd2_03", "status": "conf", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execl01", "status": "conf", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execle01", "status": "conf", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execlp01", "status": "conf", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execv01", "status": "conf", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve01", "status": "conf", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve02", "status": "conf", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve03", "status": "conf", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve04", "status": "conf", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve05", "status": "conf", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execve06", "status": "conf", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execvp01", "status": "conf", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat01", "status": "conf", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat02", "status": "conf", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "execveat03", "status": "conf", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit01", "status": "conf", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit02", "status": "conf", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "exit_group01", "status": "conf", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat01", "status": "conf", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat02", "status": "conf", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat201", "status": "conf", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "faccessat202", "status": "conf", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate01", "status": "conf", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate02", "status": "conf", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate03", "status": "conf", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate04", "status": "conf", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate05", "status": "conf", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fallocate06", "status": "conf", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr01", "status": "conf", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsetxattr02", "status": "conf", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr01", "status": "conf", "test": {"command": "file_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr02", "status": "conf", "test": {"command": "file_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr03", "status": "conf", "test": {"command": "file_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr04", "status": "conf", "test": {"command": "file_attr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "file_attr05", "status": "conf", "test": {"command": "file_attr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01", "status": "conf", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise01_64", "status": "conf", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02", "status": "conf", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise02_64", "status": "conf", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03", "status": "conf", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise03_64", "status": "conf", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04", "status": "conf", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "posix_fadvise04_64", "status": "conf", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir01", "status": "conf", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir02", "status": "conf", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchdir03", "status": "conf", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod01", "status": "conf", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod02", "status": "conf", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod03", "status": "conf", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod04", "status": "conf", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod05", "status": "conf", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmod06", "status": "conf", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat01", "status": "conf", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat02", "status": "conf", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_01", "status": "conf", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchmodat2_02", "status": "conf", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01", "status": "conf", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown01_16", "status": "conf", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02", "status": "conf", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown02_16", "status": "conf", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03", "status": "conf", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown03_16", "status": "conf", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04", "status": "conf", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown04_16", "status": "conf", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05", "status": "conf", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchown05_16", "status": "conf", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat01", "status": "conf", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat02", "status": "conf", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fchownat03", "status": "conf", "test": {"command": "fchownat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01", "status": "conf", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl01_64", "status": "conf", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02", "status": "conf", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl02_64", "status": "conf", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03", "status": "conf", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl03_64", "status": "conf", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04", "status": "conf", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl04_64", "status": "conf", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05", "status": "conf", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl05_64", "status": "conf", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07", "status": "conf", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl07_64", "status": "conf", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08", "status": "conf", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl08_64", "status": "conf", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09", "status": "conf", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl09_64", "status": "conf", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10", "status": "conf", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl10_64", "status": "conf", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11", "status": "conf", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl11_64", "status": "conf", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12", "status": "conf", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl12_64", "status": "conf", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13", "status": "conf", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl13_64", "status": "conf", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14", "status": "conf", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl14_64", "status": "conf", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15", "status": "conf", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl15_64", "status": "conf", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16", "status": "conf", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl16_64", "status": "conf", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17", "status": "conf", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl17_64", "status": "conf", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18", "status": "conf", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl18_64", "status": "conf", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19", "status": "conf", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl19_64", "status": "conf", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20", "status": "conf", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl20_64", "status": "conf", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21", "status": "conf", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl21_64", "status": "conf", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22", "status": "conf", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl22_64", "status": "conf", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23", "status": "conf", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl23_64", "status": "conf", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24", "status": "conf", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl24_64", "status": "conf", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25", "status": "conf", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl25_64", "status": "conf", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26", "status": "conf", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl26_64", "status": "conf", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27", "status": "conf", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl27_64", "status": "conf", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29", "status": "conf", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl29_64", "status": "conf", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30", "status": "conf", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl30_64", "status": "conf", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31", "status": "conf", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl31_64", "status": "conf", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32", "status": "conf", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl32_64", "status": "conf", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33", "status": "conf", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl33_64", "status": "conf", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34", "status": "conf", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl34_64", "status": "conf", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35", "status": "conf", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl35_64", "status": "conf", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36", "status": "conf", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl36_64", "status": "conf", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37", "status": "conf", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl37_64", "status": "conf", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38", "status": "conf", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl38_64", "status": "conf", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39", "status": "conf", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl39_64", "status": "conf", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40", "status": "conf", "test": {"command": "fcntl40", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fcntl40_64", "status": "conf", "test": {"command": "fcntl40_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync01", "status": "conf", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync02", "status": "conf", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fdatasync03", "status": "conf", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr01", "status": "conf", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr02", "status": "conf", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fgetxattr03", "status": "conf", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module01", "status": "conf", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "finit_module02", "status": "conf", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr01", "status": "conf", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr02", "status": "conf", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flistxattr03", "status": "conf", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock01", "status": "conf", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock02", "status": "conf", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock03", "status": "conf", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock04", "status": "conf", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock06", "status": "conf", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "flock07", "status": "conf", "test": {"command": "flock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fmtmsg01", "status": "conf", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork01", "status": "conf", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork03", "status": "conf", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork04", "status": "conf", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork05", "status": "conf", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork06", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork07", "status": "conf", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork08", "status": "conf", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork09", "status": "conf", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork10", "status": "conf", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork11", "status": "conf", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork13", "status": "conf", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fork14", "status": "conf", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fpathconf01", "status": "conf", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr01", "status": "conf", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fremovexattr02", "status": "conf", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig01", "status": "conf", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig02", "status": "conf", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsconfig03", "status": "conf", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount01", "status": "conf", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsmount02", "status": "conf", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen01", "status": "conf", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsopen02", "status": "conf", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick01", "status": "conf", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fspick02", "status": "conf", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02", "status": "conf", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat02_64", "status": "conf", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03", "status": "conf", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstat03_64", "status": "conf", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatat01", "status": "conf", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01", "status": "conf", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs01_64", "status": "conf", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02", "status": "conf", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fstatfs02_64", "status": "conf", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync01", "status": "conf", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync02", "status": "conf", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync03", "status": "conf", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fsync04", "status": "conf", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01", "status": "conf", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate01_64", "status": "conf", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03", "status": "conf", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate03_64", "status": "conf", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04", "status": "conf", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ftruncate04_64", "status": "conf", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futimesat01", "status": "conf", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcontext01", "status": "conf", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu01", "status": "conf", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcpu02", "status": "conf", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd01", "status": "conf", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd02", "status": "conf", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd03", "status": "conf", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getcwd04", "status": "conf", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents01", "status": "conf", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdents02", "status": "conf", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getdomainname01", "status": "conf", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01", "status": "conf", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid01_16", "status": "conf", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02", "status": "conf", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getegid02_16", "status": "conf", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01", "status": "conf", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid01_16", "status": "conf", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02", "status": "conf", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "geteuid02_16", "status": "conf", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01", "status": "conf", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid01_16", "status": "conf", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03", "status": "conf", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgid03_16", "status": "conf", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01", "status": "conf", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups01_16", "status": "conf", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03", "status": "conf", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getgroups03_16", "status": "conf", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostbyname_r01", "status": "conf", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostid01", "status": "conf", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname01", "status": "conf", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gethostname02", "status": "conf", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer01", "status": "conf", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getitimer02", "status": "conf", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpagesize01", "status": "conf", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpeername01", "status": "conf", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid01", "status": "conf", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgid02", "status": "conf", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpgrp01", "status": "conf", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid01", "status": "conf", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpid02", "status": "conf", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid01", "status": "conf", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getppid02", "status": "conf", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority01", "status": "conf", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getpriority02", "status": "conf", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom01", "status": "conf", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom02", "status": "conf", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom03", "status": "conf", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom04", "status": "conf", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrandom05", "status": "conf", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01", "status": "conf", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid01_16", "status": "conf", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02", "status": "conf", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid02_16", "status": "conf", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03", "status": "conf", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresgid03_16", "status": "conf", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01", "status": "conf", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid01_16", "status": "conf", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02", "status": "conf", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid02_16", "status": "conf", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03", "status": "conf", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getresuid03_16", "status": "conf", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit01", "status": "conf", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit02", "status": "conf", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrlimit03", "status": "conf", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy01", "status": "conf", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_mempolicy02", "status": "conf", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "get_robust_list01", "status": "conf", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage01", "status": "conf", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage02", "status": "conf", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage03", "status": "conf", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getrusage04", "status": "conf", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid01", "status": "conf", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsid02", "status": "conf", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockname01", "status": "conf", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt01", "status": "conf", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getsockopt02", "status": "conf", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid01", "status": "conf", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettid02", "status": "conf", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday01", "status": "conf", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "gettimeofday02", "status": "conf", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01", "status": "conf", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid01_16", "status": "conf", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03", "status": "conf", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getuid03_16", "status": "conf", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr01", "status": "conf", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr02", "status": "conf", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr03", "status": "conf", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr04", "status": "conf", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "getxattr05", "status": "conf", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module01", "status": "conf", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "init_module02", "status": "conf", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl01", "status": "conf", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl02", "status": "conf", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl03", "status": "conf", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl04", "status": "conf", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl05", "status": "conf", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl06", "status": "conf", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl07", "status": "conf", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl08", "status": "conf", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl09", "status": "conf", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl10", "status": "conf", "test": {"command": "ioctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop01", "status": "conf", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop02", "status": "conf", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop03", "status": "conf", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop04", "status": "conf", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop05", "status": "conf", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop06", "status": "conf", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_loop07", "status": "conf", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns01", "status": "conf", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns02", "status": "conf", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns03", "status": "conf", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns04", "status": "conf", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns05", "status": "conf", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns06", "status": "conf", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ns07", "status": "conf", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_sg01", "status": "conf", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone01", "status": "conf", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone02", "status": "conf", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlone03", "status": "conf", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "conf", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "conf", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_fiemap01", "status": "conf", "test": {"command": "ioctl_fiemap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd01", "status": "conf", "test": {"command": "ioctl_pidfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd02", "status": "conf", "test": {"command": "ioctl_pidfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd03", "status": "conf", "test": {"command": "ioctl_pidfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd04", "status": "conf", "test": {"command": "ioctl_pidfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd05", "status": "conf", "test": {"command": "ioctl_pidfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioctl_pidfd06", "status": "conf", "test": {"command": "ioctl_pidfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_01", "status": "conf", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify_init1_02", "status": "conf", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify01", "status": "conf", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify02", "status": "conf", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify03", "status": "conf", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify04", "status": "conf", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify05", "status": "conf", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify06", "status": "conf", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify07", "status": "conf", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify08", "status": "conf", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify09", "status": "conf", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify10", "status": "conf", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify11", "status": "conf", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "inotify12", "status": "conf", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify01", "status": "conf", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify02", "status": "conf", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify03", "status": "conf", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify04", "status": "conf", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify05", "status": "conf", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify06", "status": "conf", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify07", "status": "conf", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify08", "status": "conf", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify09", "status": "conf", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify10", "status": "conf", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify11", "status": "conf", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify12", "status": "conf", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify13", "status": "conf", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify14", "status": "conf", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify15", "status": "conf", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify16", "status": "conf", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify17", "status": "conf", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify18", "status": "conf", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify19", "status": "conf", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify20", "status": "conf", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify21", "status": "conf", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify22", "status": "conf", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify23", "status": "conf", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "fanotify24", "status": "conf", "test": {"command": "fanotify24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm01", "status": "conf", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioperm02", "status": "conf", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl01", "status": "conf", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "iopl02", "status": "conf", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_get01", "status": "conf", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set01", "status": "conf", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set02", "status": "conf", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ioprio_set03", "status": "conf", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel01", "status": "conf", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_cancel02", "status": "conf", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy01", "status": "conf", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_destroy02", "status": "conf", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents01", "status": "conf", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_getevents02", "status": "conf", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents01", "status": "conf", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_pgetevents02", "status": "conf", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup01", "status": "conf", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_setup02", "status": "conf", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit01", "status": "conf", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit02", "status": "conf", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_submit03", "status": "conf", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl01", "status": "conf", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl02", "status": "conf", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl03", "status": "conf", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl04", "status": "conf", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl05", "status": "conf", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl06", "status": "conf", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl07", "status": "conf", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl08", "status": "conf", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "keyctl09", "status": "conf", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp01", "status": "conf", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp02", "status": "conf", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kcmp03", "status": "conf", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill02", "status": "conf", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill03", "status": "conf", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill05", "status": "conf", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill06", "status": "conf", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill08", "status": "conf", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill10", "status": "conf", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill11", "status": "conf", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill12", "status": "conf", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "kill13", "status": "conf", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock01", "status": "conf", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock02", "status": "conf", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock03", "status": "conf", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock04", "status": "conf", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock05", "status": "conf", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock06", "status": "conf", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock07", "status": "conf", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock08", "status": "conf", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock09", "status": "conf", "test": {"command": "landlock09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "landlock10", "status": "conf", "test": {"command": "landlock10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01", "status": "conf", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown01_16", "status": "conf", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02", "status": "conf", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lchown02_16", "status": "conf", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr01", "status": "conf", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lgetxattr02", "status": "conf", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link02", "status": "conf", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link04", "status": "conf", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link05", "status": "conf", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "link08", "status": "conf", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat01", "status": "conf", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "linkat02", "status": "conf", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listen01", "status": "conf", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount01", "status": "conf", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount02", "status": "conf", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount03", "status": "conf", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listmount04", "status": "conf", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr01", "status": "conf", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr02", "status": "conf", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr03", "status": "conf", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "listxattr04", "status": "conf", "test": {"command": "listxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr01", "status": "conf", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr02", "status": "conf", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llistxattr03", "status": "conf", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek01", "status": "conf", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek02", "status": "conf", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "llseek03", "status": "conf", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lremovexattr01", "status": "conf", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek01", "status": "conf", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek02", "status": "conf", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek07", "status": "conf", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lseek11", "status": "conf", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr01", "status": "conf", "test": {"command": "lsm_get_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr02", "status": "conf", "test": {"command": "lsm_get_self_attr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_get_self_attr03", "status": "conf", "test": {"command": "lsm_get_self_attr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules01", "status": "conf", "test": {"command": "lsm_list_modules01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_list_modules02", "status": "conf", "test": {"command": "lsm_list_modules02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lsm_set_self_attr01", "status": "conf", "test": {"command": "lsm_set_self_attr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01", "status": "conf", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat01_64", "status": "conf", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02", "status": "conf", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat02_64", "status": "conf", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03", "status": "conf", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "lstat03_64", "status": "conf", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo02", "status": "conf", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallinfo2_01", "status": "conf", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mallopt01", "status": "conf", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind01", "status": "conf", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind02", "status": "conf", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind03", "status": "conf", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mbind04", "status": "conf", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memset01", "status": "conf", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcmp01", "status": "conf", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memcpy01", "status": "conf", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages01", "status": "conf", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages02", "status": "conf", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "migrate_pages03", "status": "conf", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall01", "status": "conf", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall02", "status": "conf", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlockall03", "status": "conf", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir02", "status": "conf", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir03", "status": "conf", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir04", "status": "conf", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir05", "status": "conf", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdir09", "status": "conf", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat01", "status": "conf", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mkdirat02", "status": "conf", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod01", "status": "conf", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod02", "status": "conf", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod03", "status": "conf", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod04", "status": "conf", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod05", "status": "conf", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod06", "status": "conf", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod07", "status": "conf", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod08", "status": "conf", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknod09", "status": "conf", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat01", "status": "conf", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mknodat02", "status": "conf", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock01", "status": "conf", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock02", "status": "conf", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock03", "status": "conf", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock04", "status": "conf", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock05", "status": "conf", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock201", "status": "conf", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock202", "status": "conf", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mlock203", "status": "conf", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap01", "status": "conf", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap02", "status": "conf", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap03", "status": "conf", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap04", "status": "conf", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap05", "status": "conf", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap06", "status": "conf", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap08", "status": "conf", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap09", "status": "conf", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap12", "status": "conf", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap13", "status": "conf", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap14", "status": "conf", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap15", "status": "conf", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap16", "status": "conf", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap17", "status": "conf", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap18", "status": "conf", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap19", "status": "conf", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap20", "status": "conf", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_01", "status": "conf", "test": {"command": "mmap21", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap21_02", "status": "conf", "test": {"command": "mmap21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mmap22", "status": "conf", "test": {"command": "mmap22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt01", "status": "conf", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "modify_ldt02", "status": "conf", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount01", "status": "conf", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount02", "status": "conf", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount03", "status": "conf", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount04", "status": "conf", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount05", "status": "conf", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount06", "status": "conf", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount07", "status": "conf", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount08", "status": "conf", "test": {"command": "mount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr01", "status": "conf", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mount_setattr02", "status": "conf", "test": {"command": "mount_setattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount01", "status": "conf", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount02", "status": "conf", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_mount03", "status": "conf", "test": {"command": "move_mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages01", "status": "conf", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages02", "status": "conf", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages03", "status": "conf", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages04", "status": "conf", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages05", "status": "conf", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages06", "status": "conf", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages07", "status": "conf", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages09", "status": "conf", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages10", "status": "conf", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages11", "status": "conf", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "move_pages12", "status": "conf", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect01", "status": "conf", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect02", "status": "conf", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect03", "status": "conf", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect04", "status": "conf", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mprotect05", "status": "conf", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pkey01", "status": "conf", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify01", "status": "conf", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify02", "status": "conf", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_notify03", "status": "conf", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_open01", "status": "conf", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedreceive01", "status": "conf", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_timedsend01", "status": "conf", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mq_unlink01", "status": "conf", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap01", "status": "conf", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap02", "status": "conf", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap03", "status": "conf", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap04", "status": "conf", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap05", "status": "conf", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mremap06", "status": "conf", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal01", "status": "conf", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mseal02", "status": "conf", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl01", "status": "conf", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl02", "status": "conf", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl03", "status": "conf", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "conf", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync01", "status": "conf", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync02", "status": "conf", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync03", "status": "conf", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msync04", "status": "conf", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock01", "status": "conf", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlock02", "status": "conf", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munlockall01", "status": "conf", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap01", "status": "conf", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap03", "status": "conf", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "munmap04", "status": "conf", "test": {"command": "munmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep01", "status": "conf", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep02", "status": "conf", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nanosleep04", "status": "conf", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at01", "status": "conf", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at02", "status": "conf", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "name_to_handle_at03", "status": "conf", "test": {"command": "name_to_handle_at03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw01", "status": "conf", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nftw6401", "status": "conf", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice01", "status": "conf", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice02", "status": "conf", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice03", "status": "conf", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice04", "status": "conf", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "nice05", "status": "conf", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open01", "status": "conf", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open02", "status": "conf", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open03", "status": "conf", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open04", "status": "conf", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open06", "status": "conf", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open07", "status": "conf", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open08", "status": "conf", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open09", "status": "conf", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open10", "status": "conf", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open11", "status": "conf", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open12", "status": "conf", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open13", "status": "conf", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open14", "status": "conf", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open15", "status": "conf", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat01", "status": "conf", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat02", "status": "conf", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat03", "status": "conf", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat04", "status": "conf", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat201", "status": "conf", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat202", "status": "conf", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "openat203", "status": "conf", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at01", "status": "conf", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_by_handle_at02", "status": "conf", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree01", "status": "conf", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "open_tree02", "status": "conf", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore01", "status": "conf", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore02", "status": "conf", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore03", "status": "conf", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "mincore04", "status": "conf", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise01", "status": "conf", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise02", "status": "conf", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise03", "status": "conf", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise05", "status": "conf", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise06", "status": "conf", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise07", "status": "conf", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise08", "status": "conf", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise09", "status": "conf", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise10", "status": "conf", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise11", "status": "conf", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "madvise12", "status": "conf", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "newuname01", "status": "conf", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf01", "status": "conf", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pathconf02", "status": "conf", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause01", "status": "conf", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pause02", "status": "conf", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality01", "status": "conf", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "personality02", "status": "conf", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd01", "status": "conf", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_getfd02", "status": "conf", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open01", "status": "conf", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open02", "status": "conf", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open03", "status": "conf", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_open04", "status": "conf", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal01", "status": "conf", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal02", "status": "conf", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pidfd_send_signal03", "status": "conf", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe01", "status": "conf", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe02", "status": "conf", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe03", "status": "conf", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe04", "status": "conf", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe05", "status": "conf", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe06", "status": "conf", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe07", "status": "conf", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe08", "status": "conf", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe09", "status": "conf", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe10", "status": "conf", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe11", "status": "conf", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe12", "status": "conf", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe13", "status": "conf", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe14", "status": "conf", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe15", "status": "conf", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_01", "status": "conf", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_02", "status": "conf", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipe2_04", "status": "conf", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_1", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_1", "-c", "5", "-s", "4090", "-i", "100", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_2", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_2", "-c", "5", "-s", "4090", "-i", "100", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_3", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_3", "-c", "5", "-s", "4090", "-i", "100", "-u", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_4", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_4", "-c", "5", "-s", "4090", "-i", "100", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_5", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_5", "-c", "5", "-s", "5000", "-i", "10", "-b", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_6", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_6", "-c", "5", "-s", "5000", "-i", "10", "-b", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_7", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_7", "-c", "5", "-s", "5000", "-i", "10", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pipeio_8", "status": "conf", "test": {"command": "pipeio", "arguments": ["-T", "pipeio_8", "-c", "5", "-s", "5000", "-i", "10", "-u", "-f", "x80"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pivot_root01", "status": "conf", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll01", "status": "conf", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "poll02", "status": "conf", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ppoll01", "status": "conf", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl01", "status": "conf", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl02", "status": "conf", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl03", "status": "conf", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl05", "status": "conf", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl06", "status": "conf", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl07", "status": "conf", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl08", "status": "conf", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl09", "status": "conf", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prctl10", "status": "conf", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01", "status": "conf", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread01_64", "status": "conf", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02", "status": "conf", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pread02_64", "status": "conf", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01", "status": "conf", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv01_64", "status": "conf", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02", "status": "conf", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv02_64", "status": "conf", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03", "status": "conf", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv03_64", "status": "conf", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201", "status": "conf", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv201_64", "status": "conf", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202", "status": "conf", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv202_64", "status": "conf", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203", "status": "conf", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "preadv203_64", "status": "conf", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "profil01", "status": "conf", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv01", "status": "conf", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv02", "status": "conf", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_readv03", "status": "conf", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev01", "status": "conf", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_vm_writev02", "status": "conf", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "process_madvise01", "status": "conf", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "prot_hsymlinks", "status": "conf", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w", "status": "conf", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtyc0w_shmem", "status": "conf", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "dirtypipe", "status": "conf", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01", "status": "conf", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect01_64", "status": "conf", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02", "status": "conf", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect02_64", "status": "conf", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03", "status": "conf", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pselect03_64", "status": "conf", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace01", "status": "conf", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace02", "status": "conf", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace03", "status": "conf", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace04", "status": "conf", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace05", "status": "conf", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace06", "status": "conf", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace07", "status": "conf", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace08", "status": "conf", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace09", "status": "conf", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace10", "status": "conf", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ptrace11", "status": "conf", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01", "status": "conf", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02", "status": "conf", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03", "status": "conf", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04", "status": "conf", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite01_64", "status": "conf", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite02_64", "status": "conf", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite03_64", "status": "conf", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwrite04_64", "status": "conf", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01", "status": "conf", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev01_64", "status": "conf", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02", "status": "conf", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev02_64", "status": "conf", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03", "status": "conf", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev03_64", "status": "conf", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201", "status": "conf", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev201_64", "status": "conf", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202", "status": "conf", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "pwritev202_64", "status": "conf", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl01", "status": "conf", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl02", "status": "conf", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl03", "status": "conf", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl04", "status": "conf", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl05", "status": "conf", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl06", "status": "conf", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl07", "status": "conf", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl08", "status": "conf", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "quotactl09", "status": "conf", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read01", "status": "conf", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read02", "status": "conf", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read03", "status": "conf", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "read04", "status": "conf", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead01", "status": "conf", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readahead02", "status": "conf", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir01", "status": "conf", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readdir21", "status": "conf", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink01", "status": "conf", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlink03", "status": "conf", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat01", "status": "conf", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readlinkat02", "status": "conf", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv01", "status": "conf", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "readv02", "status": "conf", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "realpath01", "status": "conf", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot01", "status": "conf", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "reboot02", "status": "conf", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recv01", "status": "conf", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvfrom01", "status": "conf", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg01", "status": "conf", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg02", "status": "conf", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmsg03", "status": "conf", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "recvmmsg01", "status": "conf", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages01", "status": "conf", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "remap_file_pages02", "status": "conf", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr01", "status": "conf", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "removexattr02", "status": "conf", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename01", "status": "conf", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename03", "status": "conf", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename04", "status": "conf", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename05", "status": "conf", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename06", "status": "conf", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename07", "status": "conf", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename08", "status": "conf", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename09", "status": "conf", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename10", "status": "conf", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename11", "status": "conf", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename12", "status": "conf", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename13", "status": "conf", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename14", "status": "conf", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rename15", "status": "conf", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat01", "status": "conf", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat201", "status": "conf", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "renameat202", "status": "conf", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key01", "status": "conf", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key02", "status": "conf", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key03", "status": "conf", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key04", "status": "conf", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key05", "status": "conf", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "request_key06", "status": "conf", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir01", "status": "conf", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir02", "status": "conf", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rmdir03", "status": "conf", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction01", "status": "conf", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction02", "status": "conf", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigaction03", "status": "conf", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask01", "status": "conf", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigprocmask02", "status": "conf", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "conf", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "conf", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigsuspend01", "status": "conf", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_sigtimedwait01", "status": "conf", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "conf", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk01", "status": "conf", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk02", "status": "conf", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sbrk03", "status": "conf", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max01", "status": "conf", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_max02", "status": "conf", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min01", "status": "conf", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_get_priority_min02", "status": "conf", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam01", "status": "conf", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getparam03", "status": "conf", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval01", "status": "conf", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval02", "status": "conf", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_rr_get_interval03", "status": "conf", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam01", "status": "conf", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam02", "status": "conf", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam03", "status": "conf", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam04", "status": "conf", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setparam05", "status": "conf", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler01", "status": "conf", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getscheduler02", "status": "conf", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler01", "status": "conf", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler02", "status": "conf", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler03", "status": "conf", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setscheduler04", "status": "conf", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_yield01", "status": "conf", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setaffinity01", "status": "conf", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getaffinity01", "status": "conf", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_setattr01", "status": "conf", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr01", "status": "conf", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sched_getattr02", "status": "conf", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "seccomp01", "status": "conf", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select01", "status": "conf", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select02", "status": "conf", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select03", "status": "conf", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "select04", "status": "conf", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop04", "status": "conf", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop05", "status": "conf", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send01", "status": "conf", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "send02", "status": "conf", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02", "status": "conf", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile02_64", "status": "conf", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03", "status": "conf", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile03_64", "status": "conf", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04", "status": "conf", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile04_64", "status": "conf", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05", "status": "conf", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile05_64", "status": "conf", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06", "status": "conf", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile06_64", "status": "conf", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07", "status": "conf", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile07_64", "status": "conf", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08", "status": "conf", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile08_64", "status": "conf", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09", "status": "conf", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendfile09_64", "status": "conf", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg01", "status": "conf", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg02", "status": "conf", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmsg03", "status": "conf", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg01", "status": "conf", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendmmsg02", "status": "conf", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto01", "status": "conf", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto02", "status": "conf", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sendto03", "status": "conf", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy01", "status": "conf", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy02", "status": "conf", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy03", "status": "conf", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_mempolicy04", "status": "conf", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_robust_list01", "status": "conf", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area01", "status": "conf", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_thread_area02", "status": "conf", "test": {"command": "set_thread_area02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "set_tid_address01", "status": "conf", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname01", "status": "conf", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname02", "status": "conf", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setdomainname03", "status": "conf", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01", "status": "conf", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid01_16", "status": "conf", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02", "status": "conf", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid02_16", "status": "conf", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03", "status": "conf", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsgid03_16", "status": "conf", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01", "status": "conf", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid01_16", "status": "conf", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02", "status": "conf", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid02_16", "status": "conf", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03", "status": "conf", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid03_16", "status": "conf", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04", "status": "conf", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setfsuid04_16", "status": "conf", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01", "status": "conf", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid01_16", "status": "conf", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02", "status": "conf", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid02_16", "status": "conf", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03", "status": "conf", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgid03_16", "status": "conf", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid01", "status": "conf", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setegid02", "status": "conf", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sgetmask01", "status": "conf", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01", "status": "conf", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups01_16", "status": "conf", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02", "status": "conf", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups02_16", "status": "conf", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03", "status": "conf", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setgroups03_16", "status": "conf", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname01", "status": "conf", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname02", "status": "conf", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sethostname03", "status": "conf", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer01", "status": "conf", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setitimer02", "status": "conf", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns01", "status": "conf", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setns02", "status": "conf", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid01", "status": "conf", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid02", "status": "conf", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgid03", "status": "conf", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp01", "status": "conf", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpgrp02", "status": "conf", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority01", "status": "conf", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setpriority02", "status": "conf", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01", "status": "conf", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid01_16", "status": "conf", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02", "status": "conf", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid02_16", "status": "conf", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03", "status": "conf", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid03_16", "status": "conf", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04", "status": "conf", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setregid04_16", "status": "conf", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01", "status": "conf", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid01_16", "status": "conf", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02", "status": "conf", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid02_16", "status": "conf", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03", "status": "conf", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid03_16", "status": "conf", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04", "status": "conf", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresgid04_16", "status": "conf", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01", "status": "conf", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid01_16", "status": "conf", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02", "status": "conf", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid02_16", "status": "conf", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03", "status": "conf", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid03_16", "status": "conf", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04", "status": "conf", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid04_16", "status": "conf", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05", "status": "conf", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setresuid05_16", "status": "conf", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01", "status": "conf", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid01_16", "status": "conf", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02", "status": "conf", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid02_16", "status": "conf", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03", "status": "conf", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid03_16", "status": "conf", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04", "status": "conf", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid04_16", "status": "conf", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05", "status": "conf", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid05_16", "status": "conf", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06", "status": "conf", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid06_16", "status": "conf", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07", "status": "conf", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setreuid07_16", "status": "conf", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit01", "status": "conf", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit02", "status": "conf", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit03", "status": "conf", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit04", "status": "conf", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit05", "status": "conf", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setrlimit06", "status": "conf", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsid01", "status": "conf", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt01", "status": "conf", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt02", "status": "conf", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt03", "status": "conf", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt04", "status": "conf", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt05", "status": "conf", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt06", "status": "conf", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt07", "status": "conf", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt08", "status": "conf", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt09", "status": "conf", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setsockopt10", "status": "conf", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday01", "status": "conf", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "settimeofday02", "status": "conf", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01", "status": "conf", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid01_16", "status": "conf", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03", "status": "conf", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid03_16", "status": "conf", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04", "status": "conf", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setuid04_16", "status": "conf", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr01", "status": "conf", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr02", "status": "conf", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "setxattr03", "status": "conf", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat03", "status": "conf", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown01", "status": "conf", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shutdown02", "status": "conf", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction01", "status": "conf", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaction02", "status": "conf", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack01", "status": "conf", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigaltstack02", "status": "conf", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sighold02", "status": "conf", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal01", "status": "conf", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal02", "status": "conf", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal03", "status": "conf", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal04", "status": "conf", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal05", "status": "conf", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signal06", "status": "conf", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd01", "status": "conf", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd02", "status": "conf", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_01", "status": "conf", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "signalfd4_02", "status": "conf", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigpending02", "status": "conf", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigprocmask01", "status": "conf", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigrelse01", "status": "conf", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend01", "status": "conf", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigsuspend02", "status": "conf", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigtimedwait01", "status": "conf", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwait01", "status": "conf", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sigwaitinfo01", "status": "conf", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket01", "status": "conf", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socket02", "status": "conf", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall01", "status": "conf", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall02", "status": "conf", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketcall03", "status": "conf", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair01", "status": "conf", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "socketpair02", "status": "conf", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sockioctl01", "status": "conf", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice01", "status": "conf", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice02", "status": "conf", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice03", "status": "conf", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice04", "status": "conf", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice05", "status": "conf", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice06", "status": "conf", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice07", "status": "conf", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice08", "status": "conf", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "splice09", "status": "conf", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee01", "status": "conf", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tee02", "status": "conf", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ssetmask01", "status": "conf", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01", "status": "conf", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat01_64", "status": "conf", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02", "status": "conf", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat02_64", "status": "conf", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03", "status": "conf", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat03_64", "status": "conf", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04", "status": "conf", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stat04_64", "status": "conf", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount01", "status": "conf", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount02", "status": "conf", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount03", "status": "conf", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount04", "status": "conf", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount05", "status": "conf", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount06", "status": "conf", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount07", "status": "conf", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount08", "status": "conf", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statmount09", "status": "conf", "test": {"command": "statmount09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01", "status": "conf", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs01_64", "status": "conf", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02", "status": "conf", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs02_64", "status": "conf", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03", "status": "conf", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statfs03_64", "status": "conf", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs01", "status": "conf", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statvfs02", "status": "conf", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime01", "status": "conf", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "stime02", "status": "conf", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "string01", "status": "conf", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff01", "status": "conf", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapoff02", "status": "conf", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon01", "status": "conf", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon02", "status": "conf", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "swapon03", "status": "conf", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "switch01", "status": "conf", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink02", "status": "conf", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink03", "status": "conf", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlink04", "status": "conf", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "symlinkat01", "status": "conf", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync01", "status": "conf", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syncfs01", "status": "conf", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range01", "status": "conf", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sync_file_range02", "status": "conf", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syscall01", "status": "conf", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysconf01", "status": "conf", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl01", "status": "conf", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl03", "status": "conf", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysctl04", "status": "conf", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs01", "status": "conf", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs02", "status": "conf", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs03", "status": "conf", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs04", "status": "conf", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysfs05", "status": "conf", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo01", "status": "conf", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo02", "status": "conf", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "sysinfo03", "status": "conf", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog11", "status": "conf", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "syslog12", "status": "conf", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill01", "status": "conf", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill02", "status": "conf", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tgkill03", "status": "conf", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "time01", "status": "conf", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times01", "status": "conf", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "times03", "status": "conf", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd01", "status": "conf", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd02", "status": "conf", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd04", "status": "conf", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_create01", "status": "conf", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_gettime01", "status": "conf", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime01", "status": "conf", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timerfd_settime02", "status": "conf", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create01", "status": "conf", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create02", "status": "conf", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_create03", "status": "conf", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete01", "status": "conf", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_delete02", "status": "conf", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_getoverrun01", "status": "conf", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_gettime01", "status": "conf", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime01", "status": "conf", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime02", "status": "conf", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "timer_settime03", "status": "conf", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill01", "status": "conf", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "tkill02", "status": "conf", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02", "status": "conf", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate02_64", "status": "conf", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03", "status": "conf", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "truncate03_64", "status": "conf", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ulimit01", "status": "conf", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umask01", "status": "conf", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname01", "status": "conf", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname02", "status": "conf", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "uname04", "status": "conf", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink05", "status": "conf", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink07", "status": "conf", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink08", "status": "conf", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink09", "status": "conf", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlink10", "status": "conf", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unlinkat01", "status": "conf", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare01", "status": "conf", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare02", "status": "conf", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare03", "status": "conf", "test": {"command": "unshare03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare04", "status": "conf", "test": {"command": "unshare04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "unshare05", "status": "conf", "test": {"command": "unshare05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount01", "status": "conf", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount02", "status": "conf", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount03", "status": "conf", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_01", "status": "conf", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "umount2_02", "status": "conf", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd01", "status": "conf", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd02", "status": "conf", "test": {"command": "userfaultfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd03", "status": "conf", "test": {"command": "userfaultfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd04", "status": "conf", "test": {"command": "userfaultfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "userfaultfd05", "status": "conf", "test": {"command": "userfaultfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat01", "status": "conf", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "ustat02", "status": "conf", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime01", "status": "conf", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime02", "status": "conf", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime03", "status": "conf", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime04", "status": "conf", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime05", "status": "conf", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime06", "status": "conf", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utime07", "status": "conf", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimes01", "status": "conf", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "utimensat01", "status": "conf", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork01", "status": "conf", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vfork02", "status": "conf", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup01", "status": "conf", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vhangup02", "status": "conf", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice01", "status": "conf", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice02", "status": "conf", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice03", "status": "conf", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "vmsplice04", "status": "conf", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait01", "status": "conf", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait02", "status": "conf", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait401", "status": "conf", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait402", "status": "conf", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "wait403", "status": "conf", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid01", "status": "conf", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid03", "status": "conf", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid04", "status": "conf", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid06", "status": "conf", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid07", "status": "conf", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid08", "status": "conf", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid09", "status": "conf", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid10", "status": "conf", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid11", "status": "conf", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid12", "status": "conf", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitpid13", "status": "conf", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid01", "status": "conf", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid02", "status": "conf", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid03", "status": "conf", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid04", "status": "conf", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid05", "status": "conf", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid06", "status": "conf", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid07", "status": "conf", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid08", "status": "conf", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid09", "status": "conf", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid10", "status": "conf", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "waitid11", "status": "conf", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write01", "status": "conf", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write02", "status": "conf", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write03", "status": "conf", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write04", "status": "conf", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write05", "status": "conf", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "write06", "status": "conf", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev01", "status": "conf", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev02", "status": "conf", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev03", "status": "conf", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev05", "status": "conf", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev06", "status": "conf", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "writev07", "status": "conf", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open01", "status": "conf", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open02", "status": "conf", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue01", "status": "conf", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_cmp_requeue02", "status": "conf", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait01", "status": "conf", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait02", "status": "conf", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait03", "status": "conf", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait04", "status": "conf", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait05", "status": "conf", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv01", "status": "conf", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv02", "status": "conf", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_waitv03", "status": "conf", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake01", "status": "conf", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake02", "status": "conf", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake03", "status": "conf", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wake04", "status": "conf", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "futex_wait_bitset01", "status": "conf", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create01", "status": "conf", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create02", "status": "conf", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create03", "status": "conf", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "memfd_create04", "status": "conf", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range01", "status": "conf", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range02", "status": "conf", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "copy_file_range03", "status": "conf", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx01", "status": "conf", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx02", "status": "conf", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx03", "status": "conf", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx04", "status": "conf", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx05", "status": "conf", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx06", "status": "conf", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx07", "status": "conf", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx08", "status": "conf", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx09", "status": "conf", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx10", "status": "conf", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx11", "status": "conf", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "statx12", "status": "conf", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "membarrier01", "status": "conf", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring01", "status": "conf", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "io_uring02", "status": "conf", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "perf_event_open03", "status": "conf", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 8.427992105484009, "passed": 35, "failed": 0, "broken": 1, "skipped": 1488, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 20:45:54.207685 2026-04-19 20:46:59.218684 +250 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:47:03.880231 2026-04-19 20:47:03.880235 +251 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:40:46' --until '2026-04-19 20:46:59' 0 OOM records. 2026-04-19 20:40:46.194039 2026-04-19 20:46:59.230564 +252 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:40:46' --until '2026-04-19 20:46:59' 0 Systemd errors records 2026-04-19 20:40:46.194039 2026-04-19 20:46:59.230564 +253 5 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 0 --vm-method all --vm-bytes 95% --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"stress_ng_metrics": [{"stressor": "vm", "bogo_ops": 66444, "real_time_secs": 35.5, "usr_time_secs": 10.31, "sys_time_secs": 14.37, "bogo_ops_s_real_time": 1871.43, "bogo_ops_s_usr_sys_time": 2691.56, "cpu_used_per_instance": 69.53, "rss_max_kb": 2648724, "top10_slowest": null}, {"stressor": "syscall", "bogo_ops": 1470, "real_time_secs": 33.1, "usr_time_secs": 0.27, "sys_time_secs": 1.05, "bogo_ops_s_real_time": 44.41, "bogo_ops_s_usr_sys_time": 1118.39, "cpu_used_per_instance": 3.97, "rss_max_kb": 3584, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 2, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:47:17.164165 2026-04-19 19:16:23.943354 +254 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:47:56.681097 2026-04-19 20:47:56.681101 +255 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:47:15' --until '2026-04-19 20:47:54' 0 OOM records. 2026-04-19 20:47:15.366042 2026-04-19 20:47:54.497515 +256 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:47:15' --until '2026-04-19 20:47:54' 0 Systemd errors records 2026-04-19 20:47:15.366042 2026-04-19 20:47:54.497515 +257 5 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/perf bench --format default --repeat 1 syscall all {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 588, "real_time_secs": 33.92, "usr_time_secs": 0.11, "sys_time_secs": 0.17, "bogo_ops_s_real_time": 17.33, "bogo_ops_s_usr_sys_time": 2100.35, "cpu_used_per_instance": 0.83, "rss_max_kb": 4368, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 1, "failed": -1, "metrics_untrustworthy": -1}, "perf_metrics": [{"benchmark": "syscall/basic", "total_time": 3.542, "usecs_per_op": 0.354287, "ops_per_sec": 2822571}, {"benchmark": "syscall/getpgid", "total_time": 3.652, "usecs_per_op": 0.365204, "ops_per_sec": 2738191}, {"benchmark": "syscall/fork", "total_time": 56.702, "usecs_per_op": 5670.2938, "ops_per_sec": 176}, {"benchmark": "syscall/execve", "total_time": 149.192, "usecs_per_op": 14919.2022, "ops_per_sec": 67}]} 2026-04-19 20:48:02.947311 2026-04-19 20:51:37.980421 +258 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:51:39.68509 2026-04-19 20:51:39.685094 +259 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:48:01' --until '2026-04-19 20:51:37' 0 OOM records. 2026-04-19 20:48:01.786305 2026-04-19 20:51:37.98392 +260 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:48:01' --until '2026-04-19 20:51:37' 0 Systemd errors records 2026-04-19 20:48:01.786305 2026-04-19 20:51:37.98392 +261 5 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --msg 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 71, "real_time_secs": 33.31, "usr_time_secs": 0.03, "sys_time_secs": 0.59, "bogo_ops_s_real_time": 2.13, "bogo_ops_s_usr_sys_time": 114.39, "cpu_used_per_instance": 1.86, "rss_max_kb": 2148, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 19799, "real_time_secs": 33.04, "usr_time_secs": 0.11, "sys_time_secs": 0.49, "bogo_ops_s_real_time": 599.25, "bogo_ops_s_usr_sys_time": 32775.03, "cpu_used_per_instance": 1.83, "rss_max_kb": 3996, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 57054, "real_time_secs": 33.04, "usr_time_secs": 0.03, "sys_time_secs": 0.57, "bogo_ops_s_real_time": 1726.89, "bogo_ops_s_usr_sys_time": 95148.68, "cpu_used_per_instance": 1.81, "rss_max_kb": 2148, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 110148, "real_time_secs": 33.03, "usr_time_secs": 0.15, "sys_time_secs": 0.45, "bogo_ops_s_real_time": 3334.9, "bogo_ops_s_usr_sys_time": 183947.59, "cpu_used_per_instance": 1.81, "rss_max_kb": 6544, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 115405, "real_time_secs": 33.02, "usr_time_secs": 0.08, "sys_time_secs": 0.52, "bogo_ops_s_real_time": 3494.53, "bogo_ops_s_usr_sys_time": 191571.23, "cpu_used_per_instance": 1.82, "rss_max_kb": 2148, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 9, "real_time_secs": 33.62, "usr_time_secs": 0.01, "sys_time_secs": 0.33, "bogo_ops_s_real_time": 0.27, "bogo_ops_s_usr_sys_time": 26.16, "cpu_used_per_instance": 1.02, "rss_max_kb": 37892, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 6, "real_time_secs": 33.91, "usr_time_secs": 0.0, "sys_time_secs": 0.14, "bogo_ops_s_real_time": 0.18, "bogo_ops_s_usr_sys_time": 42.54, "cpu_used_per_instance": 0.42, "rss_max_kb": 59364, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 947276, "real_time_secs": 33.16, "usr_time_secs": 0.6, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 28565.94, "bogo_ops_s_usr_sys_time": 1566791.71, "cpu_used_per_instance": 1.82, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 11431, "real_time_secs": 33.03, "usr_time_secs": 0.07, "sys_time_secs": 0.82, "bogo_ops_s_real_time": 346.12, "bogo_ops_s_usr_sys_time": 12877.19, "cpu_used_per_instance": 2.69, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 348, "real_time_secs": 66.01, "usr_time_secs": 0.06, "sys_time_secs": 0.84, "bogo_ops_s_real_time": 5.27, "bogo_ops_s_usr_sys_time": 389.02, "cpu_used_per_instance": 1.36, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 196609, "real_time_secs": 33.17, "usr_time_secs": 0.05, "sys_time_secs": 0.55, "bogo_ops_s_real_time": 5926.95, "bogo_ops_s_usr_sys_time": 323837.18, "cpu_used_per_instance": 1.83, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 1139621, "real_time_secs": 33.11, "usr_time_secs": 0.59, "sys_time_secs": 0.01, "bogo_ops_s_real_time": 34423.15, "bogo_ops_s_usr_sys_time": 1891374.13, "cpu_used_per_instance": 1.82, "rss_max_kb": 4112, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 7280400, "real_time_secs": 33.62, "usr_time_secs": 3.11, "sys_time_secs": 21.73, "bogo_ops_s_real_time": 216551.36, "bogo_ops_s_usr_sys_time": 293125.01, "cpu_used_per_instance": 73.88, "rss_max_kb": 2020, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 11816, "real_time_secs": 33.04, "usr_time_secs": 0.09, "sys_time_secs": 0.5, "bogo_ops_s_real_time": 357.62, "bogo_ops_s_usr_sys_time": 20293.24, "cpu_used_per_instance": 1.76, "rss_max_kb": 2020, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 14, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:51:46.248256 2026-04-19 19:16:23.943354 +262 5 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 20:52:22.426069 2026-04-19 20:52:22.426072 +263 5 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:51:44' --until '2026-04-19 20:52:20' 0 OOM records. 2026-04-19 20:51:44.383234 2026-04-19 20:52:20.81683 +264 5 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:51:44' --until '2026-04-19 20:52:20' 0 Systemd errors records 2026-04-19 20:51:44.383234 2026-04-19 20:52:20.81683 +297 7 loader /usr/local/bin/kirk --suite-timeout 50 --run-suite syscalls-ipc --json-report /var/tmp/ltp-results/syscalls-ipc_2026-04-19_21:10:27.json {"results": [{"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msg4zYeJg as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl01.c:37: TPASS: msgctl(IPC_STAT)\\nmsgctl01.c:40: TPASS: msg_stime = 0\\nmsgctl01.c:45: TPASS: msg_rtime = 0\\nmsgctl01.c:50: TPASS: msg_ctime = 1776633029, expected 1776633029\\nmsgctl01.c:58: TPASS: msg_qnum = 0\\nmsgctl01.c:63: TPASS: msg_qbytes = 65536\\nmsgctl01.c:68: TPASS: msg_lspid = 0\\nmsgctl01.c:73: TPASS: msg_lrpid = 0\\nmsgctl01.c:78: TPASS: msg_perm.__key == 1627588566\\nmsgctl01.c:85: TPASS: msg_perm.uid = 1000\\nmsgctl01.c:92: TPASS: msg_perm.gid = 1002\\nmsgctl01.c:99: TPASS: msg_perm.cuid = 1000\\nmsgctl01.c:106: TPASS: msg_perm.cgid = 1002\\nmsgctl01.c:113: TPASS: msg_perm.mode = 0660\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16091060638427734, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msgs2nQ5m as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl02.c:34: TPASS: msgctl(IPC_SET) msg_qbytes - 1\\nmsgctl02.c:40: TPASS: msg_qbytes = 65535\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15774989128112793, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_msga5XcQn as tmpdir (xfs filesystem)\\ntst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl03.c:30: TPASS: msgctl(IPC_RMID)\\nmsgctl03.c:34: TPASS: msgctl(IPC_STAT): EINVAL (22)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3145129680633545, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "conf", "test": {"command": "msgctl04", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04729652404785156, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl05", "status": "conf", "test": {"command": "msgctl05", "arguments": [], "log": "tst_test.c:1414: TCONF: test requires struct msqid64_ds to have the time_high fields\\n", "retval": ["32"], "duration": 0.04849576950073242, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl06", "status": "conf", "test": {"command": "msgctl06", "arguments": [], "log": "tst_test.c:1452: TCONF: Test needs to be run as root\\n\\nSummary:\\npassed 0\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["32"], "duration": 0.04761838912963867, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "tst_test.c:2047: TINFO: LTP version: 20260130\\ntst_test.c:2050: TINFO: Tested kernel: 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b) x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1875: TINFO: Overall timeout per run is 0h 21m 36s\\nmsgctl12.c:44: TPASS: msgctl() test IPC_INFO succeeded\\nmsgctl12.c:44: TPASS: msgctl() test MSG_INFO succeeded\\nmsgctl12.c:44: TPASS: msgctl() test MSG_STAT succeeded\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15239310264587402, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "conf", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget01", "status": "conf", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget02", "status": "conf", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget03", "status": "conf", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget04", "status": "conf", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgget05", "status": "conf", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv01", "status": "conf", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv02", "status": "conf", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv03", "status": "conf", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv05", "status": "conf", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv06", "status": "conf", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv07", "status": "conf", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgrcv08", "status": "conf", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd01", "status": "conf", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd02", "status": "conf", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd05", "status": "conf", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "msgsnd06", "status": "conf", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl01", "status": "conf", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl02", "status": "conf", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl03", "status": "conf", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl04", "status": "conf", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl05", "status": "conf", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl06", "status": "conf", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl07", "status": "conf", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl08", "status": "conf", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semctl09", "status": "conf", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget01", "status": "conf", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget02", "status": "conf", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semget05", "status": "conf", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop01", "status": "conf", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop02", "status": "conf", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "semop03", "status": "conf", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat01", "status": "conf", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat02", "status": "conf", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmat04", "status": "conf", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl01", "status": "conf", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl02", "status": "conf", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl03", "status": "conf", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl04", "status": "conf", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl05", "status": "conf", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl06", "status": "conf", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl07", "status": "conf", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmctl08", "status": "conf", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt01", "status": "conf", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmdt02", "status": "conf", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget02", "status": "conf", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget03", "status": "conf", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget04", "status": "conf", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget05", "status": "conf", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}, {"test_fqn": "shmget06", "status": "conf", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "conf"}}], "stats": {"runtime": 0.9289772510528564, "passed": 21, "failed": 0, "broken": 0, "skipped": 53, "warnings": 0}, "environment": {"distribution": "opensuse-leap", "distribution_version": "15.6", "kernel": "Linux 6.4.0-150600.23.92-default #1 SMP PREEMPT_DYNAMIC Tue Mar 17 00:08:12 UTC 2026 (e41f89b)", "cmdline": "BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.23.92-default root=LABEL=ROOT console=ttyS0 net.ifnames=0 dis_ucode_ldr", "arch": "x86_64", "cpu": "x86_64", "swap": "0 kB", "RAM": "3049384 kB"}} 2026-04-19 21:10:26.857381 2026-04-19 19:16:23.943354 +265 6 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 35.03, "usr_time_secs": 0.27, "sys_time_secs": 1.29, "bogo_ops_s_real_time": 64.86, "bogo_ops_s_usr_sys_time": 1456.92, "cpu_used_per_instance": 1.11, "rss_max_kb": 4896, "top10_slowest": [["syslog", 16807531131.5, 824268076, 32790794187], ["execve", 16980678.5, 16408838, 17552519], ["execveat", 14839820.5, 13270603, 16409038], ["sync", 5218970.0, 3876046, 6561894], ["fdatasync", 4685550.5, 3247646, 6123455], ["pwritev2", 3139268.5, 3016933, 3261604], ["wait4", 2483859.0, 806977, 4160741], ["fsync", 2250087.0, 2199867, 2300307], ["pause", 1968952.5, 199845, 3738060], ["msync", 1964563.5, 64502, 3864625]]}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 20:54:10.396202 2026-04-19 19:16:23.943354 +266 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:54:46.91658 2026-04-19 20:54:46.916584 +267 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:54:10' --until '2026-04-19 20:54:46' 0 OOM records. 2026-04-19 20:54:10.282248 2026-04-19 20:54:46.639038 +268 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:54:10' --until '2026-04-19 20:54:46' 0 Systemd errors records 2026-04-19 20:54:10.282248 2026-04-19 20:54:46.639038 +269 6 loader /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:54:48.json {"results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abozJN4cX as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0929727554321289, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0631566047668457, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accT55Oxg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 42575\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07256054878234863, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0730135440826416, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 43051\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 41117\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 40359\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08479094505310059, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accG22yeS as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.36512160301208496, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accg4BU84 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2060098648071289, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08181953430175781, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accTOGpYI as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accTOGpYI/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11010885238647461, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accOSpgcA as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accOSpgcA/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14106082916259766, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc6j3NCa as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('kworker/2:1')\\nacct02.c:127: TINFO: elap_time/clock_ticks >= 2 (66771/100: 667.00)\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 13574 (2)\\nacct02.c:193: TINFO: == entry 2 ==\\nacct02.c:84: TINFO: ac_comm != 'acct02_helper' ('sh')\\nacct02.c:133: TINFO: ac_exitcode != 32768 (0)\\nacct02.c:141: TINFO: ac_ppid != 13574 (13331)\\nacct02.c:193: TINFO: == entry 3 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 3\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1414391994476318, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06608414649963379, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06513738632202148, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08660268783569336, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06885242462158203, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.8987884521484375, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06427836418151855, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10251641273498535, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09801244735717773, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1488339900970459, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09337568283081055, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0741958618164062, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.119168519973755, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0930609703063965, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07694125175476074, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin84cHTz as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08237576484680176, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15042567253112793, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binih0K8T as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08222627639770508, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binioXBRi as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2000594139099121, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binlayvOB as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09131383895874023, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 119ns, avg_dev = 48ns, dev_ratio = 0.40 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 250491ns, avg_dev = 21716ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 308693ns, avg_dev = 27697ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -58082ns, avg_dev = 14612ns, dev_ratio = 0.25 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 17175 , avg_dev = 3734 , dev_ratio = 0.22 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 9.987767219543457, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0701897144317627, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10341787338256836, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08282256126403809, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06967401504516602, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07278299331665039, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 23.480958223342896, "passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:54:48.443709 2026-04-19 19:16:23.943354 +270 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 20:56:32.429452 2026-04-19 20:56:32.429456 +271 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:54:48' --until '2026-04-19 20:56:32' 0 OOM records. 2026-04-19 20:54:48.183595 2026-04-19 20:56:32.150004 +272 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:54:48' --until '2026-04-19 20:56:32' 0 Systemd errors records 2026-04-19 20:54:48.183595 2026-04-19 20:56:32.150004 +273 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 50 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:56:33.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 38.27, "usr_time_secs": 0.25, "sys_time_secs": 1.19, "bogo_ops_s_real_time": 59.37, "bogo_ops_s_usr_sys_time": 1584.74, "cpu_used_per_instance": 0.94, "rss_max_kb": 4896, "top10_slowest": [["syslog", 829632775.0, 812376998, 846888552], ["execve", 19017298.5, 18398359, 19636238], ["execveat", 16942692.5, 14803435, 19081950], ["accept", 5960454.0, 5960454, 5960454], ["fdatasync", 5616196.5, 3509495, 7722898], ["pwritev2", 3880064.0, 2780869, 4979259], ["clone", 3722170.5, 1251424, 6192917], ["sync", 3715856.0, 3628891, 3802821], ["wait4", 3330830.5, 1770642, 4891019], ["fsync", 2665834.0, 2386981, 2944687]]}, {"stressor": "cpu", "bogo_ops": 2880, "real_time_secs": 33.0, "usr_time_secs": 72.31, "sys_time_secs": 0.76, "bogo_ops_s_real_time": 87.28, "bogo_ops_s_usr_sys_time": 39.42, "cpu_used_per_instance": 55.36, "rss_max_kb": 2780, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboaDI5hG as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13732361793518066, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13536858558654785, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accOjUYEq as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 39191\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12018013000488281, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13937163352966309, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 41235\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 37469\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 42309\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1677265167236328, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acclvrm5U as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5843908786773682, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accg5fFIZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3916313648223877, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14728546142578125, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accJ3SmIc as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accJ3SmIc/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1483299732208252, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accgXt95P as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accgXt95P/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12286663055419922, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accaZJ6bp as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1388423442840576, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06800699234008789, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06135845184326172, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08419346809387207, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0681602954864502, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.928072452545166, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07103967666625977, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07494187355041504, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06789565086364746, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06487345695495605, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06334805488586426, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0703253746032715, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.107156276702881, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1477041244506836, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15395236015319824, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binm6jIrc as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15441489219665527, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1766364574432373, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binLCVMgD as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12134742736816406, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binGoaDUD as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2427670955657959, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binLQwNkT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1918344497680664, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 302ns, avg_dev = 183ns, dev_ratio = 0.60 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 242487ns, avg_dev = 19447ns, dev_ratio = 0.08 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 267599ns, avg_dev = 15267ns, dev_ratio = 0.06 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -24810ns, avg_dev = 18986ns, dev_ratio = 0.77 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 8721 , avg_dev = 5097 , dev_ratio = 0.58 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 10.79623031616211, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07199335098266602, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07879829406738281, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06597113609313965, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06935763359069824, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07532453536987305, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 25.30902123451233, "passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:56:33.901791 2026-04-19 20:57:18.912988 +274 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 60 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:57:18.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 37.58, "usr_time_secs": 0.19, "sys_time_secs": 1.12, "bogo_ops_s_real_time": 60.46, "bogo_ops_s_usr_sys_time": 1724.93, "cpu_used_per_instance": 0.88, "rss_max_kb": 5080, "top10_slowest": [["syslog", 579155740.5, 171203243, 987108238], ["execve", 27344329.0, 15909534, 38779124], ["execveat", 22992609.5, 15649187, 30336032], ["pwritev2", 5037074.0, 5001512, 5072636], ["clock_settime", 4983080.0, 4983080, 4983080], ["sync", 4658514.5, 3654761, 5662268], ["fsync", 4307131.5, 2892982, 5721281], ["fdatasync", 4080613.5, 3730851, 4430376], ["accept4", 3488547.0, 3488547, 3488547], ["syncfs", 3350163.0, 2428963, 4271363]]}, {"stressor": "cpu", "bogo_ops": 3188, "real_time_secs": 33.52, "usr_time_secs": 80.17, "sys_time_secs": 0.25, "bogo_ops_s_real_time": 95.12, "bogo_ops_s_usr_sys_time": 39.64, "cpu_used_per_instance": 59.98, "rss_max_kb": 2880, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboFlJSXI as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13012075424194336, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10404253005981445, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accJ0SzZW as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 37963\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1268630027770996, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1317598819732666, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 35443\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 39887\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46541\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1603395938873291, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accnA968c as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6256973743438721, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accM3Vnii as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.31560611724853516, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08730125427246094, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc0aFkui as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc0aFkui/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11178898811340332, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accmZDFlJ as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accmZDFlJ/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11716246604919434, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acceT7WsY as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.141127347946167, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06547904014587402, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05711030960083008, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07123351097106934, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.061620473861694336, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.8283507823944092, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05762124061584473, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08434772491455078, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07818174362182617, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12298011779785156, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08107542991638184, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.073298931121826, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.124249219894409, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.127434730529785, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05709362030029297, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_bin7KYKbT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06116294860839844, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06340551376342773, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binKDXb6K as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.057341814041137695, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binTLEScg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09922099113464355, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binQyA8EA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07707071304321289, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 26m 36s\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:484: TINFO: Minimum sampling period ended\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:307: TINFO: loop = 1024, delay_bias = 0\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: start_a - start_b: { avg = 565ns, avg_dev = 70ns, dev_ratio = 0.12 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - start_a : { avg = 277878ns, avg_dev = 18907ns, dev_ratio = 0.07 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_b - start_b : { avg = 292815ns, avg_dev = 25346ns, dev_ratio = 0.09 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: end_a - end_b : { avg = -14372ns, avg_dev = 16389ns, dev_ratio = 1.14 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:295: TINFO: spins : { avg = 6456 , avg_dev = 3286 , dev_ratio = 0.51 }\\n/usr/src/debug/ltp/20250130/include/tst_fuzzy_sync.h:654: TINFO: Exceeded execution loops, requesting exit\\nbind06.c:88: TPASS: Nothing bad happened (yet)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 12.382848262786865, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_map01.c:58: TPASS: Created hash map\\nbpf_map01.c:75: TPASS: Empty hash map lookup: ENOENT (2)\\nbpf_map01.c:107: TPASS: Update hash map element\\nbpf_map01.c:127: TPASS: hash map lookup\\nbpf_map01.c:58: TPASS: Created array map\\nbpf_map01.c:107: TPASS: Update array map element\\nbpf_map01.c:127: TPASS: array map lookup\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06263327598571777, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog01.c:101: TPASS: val = 1\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06049537658691406, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_common.c:114: TPASS: Loaded program\\nbpf_prog02.c:99: TPASS: val = 1152921504606846976 + 1\\nbpf_prog02.c:109: TPASS: val = 1152921504606846976 - 1\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06207108497619629, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog03.c:110: TPASS: Failed verification: EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06123161315917969, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbpf_common.c:16: TINFO: Raising RLIMIT_MEMLOCK to 10485760\\ntst_capability.c:29: TINFO: Dropping CAP_SYS_ADMIN(21)\\nbpf_prog04.c:76: TPASS: BPF program failed verification: EINVAL (22)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06435155868530273, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 25.993719339370728, "passed": 380, "failed": 0, "broken": 0, "skipped": 1427, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:57:18.926551 2026-04-19 20:58:03.937642 +275 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 70 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:58:03.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 36.78, "usr_time_secs": 0.2, "sys_time_secs": 1.12, "bogo_ops_s_real_time": 61.77, "bogo_ops_s_usr_sys_time": 1721.52, "cpu_used_per_instance": 0.9, "rss_max_kb": 4960, "top10_slowest": [["syslog", 966340054.0, 950007848, 982672260], ["execveat", 24190458.5, 15376738, 33004179], ["execve", 24044840.0, 14776377, 33313303], ["fdatasync", 6224024.5, 3592814, 8855235], ["sync", 4042551.0, 3767622, 4317480], ["pwritev2", 3647498.0, 3444312, 3850684], ["clock_settime", 3472326.0, 3472326, 3472326], ["msync", 3036069.5, 21345, 6050794], ["clone3", 3004496.0, 1073799, 4935193], ["fsync", 2927710.0, 2673155, 3182265]]}, {"stressor": "cpu", "bogo_ops": 3756, "real_time_secs": 33.89, "usr_time_secs": 94.74, "sys_time_secs": 0.42, "bogo_ops_s_real_time": 110.82, "bogo_ops_s_usr_sys_time": 39.47, "cpu_used_per_instance": 70.19, "rss_max_kb": 2892, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboJg5TAI as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14589524269104004, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12155723571777344, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc03RJRS as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 49023\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13294148445129395, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15320825576782227, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 46641\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 45343\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 37913\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17053747177124023, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accxeNiav as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.572246789932251, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accDpFOf9 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.3696596622467041, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15596222877502441, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accrH8PLg as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accrH8PLg/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18550682067871094, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accuNVEPF as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accuNVEPF/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12496376037597656, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc4jbRyg as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.13307523727417, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0741434097290039, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12856364250183105, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15538239479064941, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13316774368286133, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.4293770790100098, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1072700023651123, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20788145065307617, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08007287979125977, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12386155128479004, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12182116508483887, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.0823960304260254, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.131671190261841, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0689611434936523, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11274838447570801, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binpBCAss as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1419377326965332, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1312394142150879, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binozZYAE as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0715639591217041, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binhh4kuA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17838788032531738, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binV6NbPr as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17086529731750488, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 14.916866540908813, "passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:58:03.952327 2026-04-19 20:58:48.964088 +276 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 80 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:58:49.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 36.79, "usr_time_secs": 0.2, "sys_time_secs": 1.1, "bogo_ops_s_real_time": 61.76, "bogo_ops_s_usr_sys_time": 1739.36, "cpu_used_per_instance": 0.89, "rss_max_kb": 4968, "top10_slowest": [["syslog", 4855174802.0, 975957390, 8734392214], ["execve", 32632209.5, 32501996, 32762423], ["execveat", 29261457.5, 29009776, 29513139], ["pwritev2", 7152314.5, 3453248, 10851381], ["fdatasync", 6475538.5, 5415856, 7535221], ["pause", 5364845.0, 5013903, 5715787], ["sync", 5063659.5, 3404012, 6723307], ["accept", 3808340.0, 1966785, 5649895], ["clock_settime", 3798415.0, 3798415, 3798415], ["fsync", 3581874.5, 3443460, 3720289]]}, {"stressor": "cpu", "bogo_ops": 4253, "real_time_secs": 33.58, "usr_time_secs": 106.71, "sys_time_secs": 0.33, "bogo_ops_s_real_time": 126.65, "bogo_ops_s_usr_sys_time": 39.73, "cpu_used_per_instance": 79.69, "rss_max_kb": 2740, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboJqPRQ2 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1080179214477539, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08469557762145996, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc0YBbVm as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 53149\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.09387731552124023, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08721375465393066, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 32789\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 39695\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46829\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.109893798828125, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accn9tVkp as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.6318190097808838, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc6HLhVR as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.30826807022094727, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14818263053894043, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accKPXaMJ as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accKPXaMJ/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16022086143493652, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accqZq0PK as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accqZq0PK/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14908599853515625, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accCEk0tZ as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.3068039417266846, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13001775741577148, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12482237815856934, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10552382469177246, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1289219856262207, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.4221165180206299, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12471938133239746, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15150976181030273, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12142777442932129, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0745232105255127, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07388877868652344, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1362051963806152, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1230642795562744, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.1179141998291016, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11884784698486328, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binbCuTrL as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12682175636291504, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12376141548156738, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binJDrTHG as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07161593437194824, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binxc0a8R as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18950438499450684, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binRuYB8C as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12578940391540527, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 14.779074668884277, "passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:58:48.97752 2026-04-19 20:59:38.989091 +277 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 90 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_20:59:39.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 35.04, "usr_time_secs": 0.24, "sys_time_secs": 0.94, "bogo_ops_s_real_time": 64.83, "bogo_ops_s_usr_sys_time": 1933.18, "cpu_used_per_instance": 0.84, "rss_max_kb": 5024, "top10_slowest": [["syslog", 9129883024.5, 978736006, 17281030043], ["execveat", 49337926.5, 43961959, 54713894], ["execve", 45615569.5, 27579067, 63652072], ["sync", 10313348.5, 7057504, 13569193], ["fdatasync", 5876574.5, 4650928, 7102221], ["accept4", 5495577.0, 5234047, 5757107], ["exit", 5464035.5, 3131958, 7796113], ["fsync", 5384525.5, 4120956, 6648095], ["accept", 4739750.0, 3965896, 5513604], ["wait3", 3683791.5, 3672127, 3695456]]}, {"stressor": "cpu", "bogo_ops": 2277, "real_time_secs": 33.09, "usr_time_secs": 57.49, "sys_time_secs": 0.21, "bogo_ops_s_real_time": 68.81, "bogo_ops_s_usr_sys_time": 39.46, "cpu_used_per_instance": 43.59, "rss_max_kb": 2916, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_aboQrd7YY as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15810370445251465, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.14910435676574707, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accEfiXJT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 33629\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0916433334350586, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08895015716552734, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 39883\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 39937\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 46363\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19066739082336426, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accYk9VFb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1030523777008057, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accpdPwvT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.4479191303253174, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.16610956192016602, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc2Ng4XK as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_acc2Ng4XK/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2635233402252197, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accIeHNWT as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accIeHNWT/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.24548983573913574, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_acc7Gz6tN as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.2940328121185303, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15057945251464844, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19290876388549805, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19315791130065918, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17612504959106445, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.5834250450134277, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12607288360595703, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.20743155479431152, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.13468027114868164, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.19821381568908691, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0750434398651123, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.076050281524658, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.148157835006714, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.10800838470459, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1515963077545166, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binUYoVAp as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07753491401672363, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08540105819702148, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binY5ButA as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12185955047607422, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binyiTWFT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18838787078857422, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binmBhX3a as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17572712898254395, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 16.36895751953125, "passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 20:59:39.001686 2026-04-19 21:00:59.021212 +278 6 loader /usr/bin/stress-ng --timeout 33 --cpu 0 --cpu-method matrixprod --cpu-load 100 --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/kirk --suite-timeout 33 --run-suite syscalls --json-report /var/tmp/ltp-results/syscalls_2026-04-19_21:00:59.json {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 34.63, "usr_time_secs": 0.2, "sys_time_secs": 1.02, "bogo_ops_s_real_time": 65.6, "bogo_ops_s_usr_sys_time": 1861.66, "cpu_used_per_instance": 0.88, "rss_max_kb": 4968, "top10_slowest": [["syslog", 6293848197.5, 404684372, 12183012023], ["execve", 39654373.0, 32776193, 46532553], ["execveat", 37286139.0, 29276644, 45295634], ["accept", 9561880.5, 6373373, 12750388], ["fdatasync", 9180035.5, 8423367, 9936704], ["pwritev2", 7268825.5, 5592085, 8945566], ["fsync", 5618340.5, 4590811, 6645870], ["sync", 5384850.5, 3885024, 6884677], ["pause", 4471312.0, 1767318, 7175306], ["clock_settime", 3635643.0, 3635643, 3635643]]}, {"stressor": "cpu", "bogo_ops": 3177, "real_time_secs": 33.09, "usr_time_secs": 79.95, "sys_time_secs": 0.25, "bogo_ops_s_real_time": 96.0, "bogo_ops_s_usr_sys_time": 39.62, "cpu_used_per_instance": 60.58, "rss_max_kb": 3004, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}, "results": [{"test_fqn": "abort01", "status": "pass", "test": {"command": "abort01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_abolRryzT as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nabort01.c:62: TPASS: abort() dumped core\\nabort01.c:65: TPASS: abort() raised SIGIOT\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18732070922851562, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept01", "status": "pass", "test": {"command": "accept01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept01.c:92: TPASS: bad file descriptor : EBADF (9)\\naccept01.c:92: TPASS: invalid socket buffer : EINVAL (22)\\naccept01.c:92: TPASS: invalid salen : EINVAL (22)\\naccept01.c:92: TPASS: no queued connections : EINVAL (22)\\naccept01.c:92: TPASS: UDP accept : EOPNOTSUPP (95)\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07272887229919434, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept02", "status": "pass", "test": {"command": "accept02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accuO3Fy8 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\naccept02.c:131: TINFO: Starting listener on port: 60901\\naccept02.c:75: TPASS: Multicast group was not copied: EADDRNOTAVAIL (99)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.0834498405456543, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept03", "status": "pass", "test": {"command": "accept03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept03.c:48: TPASS: accept() on file : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on O_PATH file : EBADF (9)\\naccept03.c:48: TPASS: accept() on directory : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /dev/zero : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on /proc/self/maps : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe read end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pipe write end : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on epoll : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on eventfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on signalfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on timerfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on pidfd : ENOTSOCK (88)\\ntst_fd.c:151: TCONF: Skipping fanotify: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on inotify : ENOTSOCK (88)\\ntst_fd.c:170: TCONF: Skipping userfaultfd: ENOSYS (38)\\naccept03.c:48: TPASS: accept() on perf event : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on io uring : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on bpf map : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fsopen : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on fspick : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on open_tree : EBADF (9)\\naccept03.c:48: TPASS: accept() on memfd : ENOTSOCK (88)\\naccept03.c:48: TPASS: accept() on memfd secret : ENOTSOCK (88)\\n\\nSummary:\\npassed 21\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12639117240905762, "failed": 0, "passed": 21, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "accept4_01", "status": "pass", "test": {"command": "accept4_01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccept4_01.c:71: TINFO: Testing variant: libc accept4()\\naccept4_01.c:78: TINFO: server listening on: 33631\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_accept4 syscall\\naccept4_01.c:78: TINFO: server listening on: 35807\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 0\\naccept4_01.c:151: TPASS: Close-on-exec 0, nonblock 1\\naccept4_01.c:151: TPASS: Close-on-exec 1, nonblock 1\\naccept4_01.c:71: TINFO: Testing variant: __NR_socketcall SYS_ACCEPT4 syscall\\naccept4_01.c:78: TINFO: server listening on: 36715\\naccept4_01.c:43: TCONF: syscall(-1) __NR_socketcall not supported on your arch\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1175687313079834, "failed": 0, "passed": 8, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "access01", "status": "pass", "test": {"command": "access01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accFC2mhu as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_rwx, R_OK|W_OK|X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_r, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_w, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessfile_x, R_OK|W_OK|X_OK) as nobody : EACCES (13)\\naccess01.c:245: TPASS: access(accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_r, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_w, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessfile_x, R_OK|W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_r/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_w/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_x/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rw/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_rx/accessfile_x, X_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, R_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_r, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_w, W_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, F_OK) as nobody passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, R_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, W_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as root passed\\naccess01.c:245: TPASS: access(accessdir_wx/accessfile_x, X_OK) as nobody passed\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_r/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_w/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_x/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, F_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rw/accessfile_x, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_rx/accessfile_x, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, W_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_r, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as root : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_w, X_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, R_OK) as nobody : EACCES (13)\\naccess01.c:242: TPASS: access(accessdir_wx/accessfile_x, W_OK) as nobody : EACCES (13)\\n\\nSummary:\\npassed 199\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.724707841873169, "failed": 0, "passed": 199, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access02", "status": "pass", "test": {"command": "access02", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_accDrNmWb as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess02.c:139: TPASS: access(file_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(file_x, X_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_f, F_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_r, R_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_w, W_OK) as nobody behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as root behaviour is correct.\\naccess02.c:139: TPASS: access(symlink_x, X_OK) as nobody behaviour is correct.\\n\\nSummary:\\npassed 16\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.5462863445281982, "failed": 0, "passed": 16, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access03", "status": "pass", "test": {"command": "access03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\naccess03.c:37: TPASS: invalid address as root : EFAULT (14)\\naccess03.c:46: TPASS: invalid address as nobody : EFAULT (14)\\n\\nSummary:\\npassed 8\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.17833256721496582, "failed": 0, "passed": 8, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "access04", "status": "pass", "test": {"command": "access04", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accav8mCv as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accav8mCv/mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\naccess04.c:68: TPASS: access as root : EINVAL (22)\\naccess04.c:68: TPASS: access as nobody : EINVAL (22)\\naccess04.c:68: TPASS: access as root : ENOENT (2)\\naccess04.c:68: TPASS: access as nobody : ENOENT (2)\\naccess04.c:68: TPASS: access as root : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as nobody : ENAMETOOLONG (36)\\naccess04.c:68: TPASS: access as root : ENOTDIR (20)\\naccess04.c:68: TPASS: access as nobody : ENOTDIR (20)\\naccess04.c:68: TPASS: access as root : ELOOP (40)\\naccess04.c:68: TPASS: access as nobody : ELOOP (40)\\naccess04.c:68: TPASS: access as root : EROFS (30)\\naccess04.c:68: TPASS: access as nobody : EROFS (30)\\n\\nSummary:\\npassed 12\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2604804039001465, "failed": 0, "passed": 12, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct01", "status": "pass", "test": {"command": "acct01", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accYE6kV4 as tmpdir (tmpfs filesystem)\\ntst_test.c:1076: TINFO: Mounting (null) to /tmp/LTP_accYE6kV4/ro_mntpoint fstyp=tmpfs flags=21\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nacct01.c:125: TPASS: acct(.) : EISDIR (21)\\nacct01.c:125: TPASS: acct(/dev/null) : EACCES (13)\\nacct01.c:125: TPASS: acct(/tmp/does/not/exist) : ENOENT (2)\\nacct01.c:125: TPASS: acct(./tmpfile/) : ENOTDIR (20)\\nacct01.c:125: TPASS: acct(./tmpfile) : EPERM (1)\\nacct01.c:125: TPASS: acct(NULL) : EPERM (1)\\nacct01.c:125: TPASS: acct(test_file_eloop1) : ELOOP (40)\\nacct01.c:125: TPASS: acct(aaaa...) : ENAMETOOLONG (36)\\nacct01.c:125: TPASS: acct(ro_mntpoint/file) : EROFS (30)\\nacct01.c:125: TPASS: acct(Invalid address) : EFAULT (14)\\n\\nSummary:\\npassed 10\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.2979390621185303, "failed": 0, "passed": 10, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "acct02", "status": "pass", "test": {"command": "acct02", "arguments": [], "log": "tst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_tmpdir.c:316: TINFO: Using /tmp/LTP_accXyJHa2 as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\nacct02.c:63: TINFO: CONFIG_BSD_PROCESS_ACCT_V3=y\\nacct02.c:240: TINFO: Verifying using 'struct acct_v3'\\nacct02.c:193: TINFO: == entry 1 ==\\nacct02.c:204: TINFO: Number of accounting file entries tested: 1\\nacct02.c:210: TPASS: acct() wrote correct file contents!\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.1658108234405518, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key01", "status": "pass", "test": {"command": "add_key01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key01.c:63: TINFO: The key type is keyrings and plen is 0\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: the key type is keyrings and plen is 1\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is user and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is user and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32767\\nadd_key01.c:79: TPASS: add_key call succeeded as expected\\nadd_key01.c:63: TINFO: The key type is logon and plen is 32768\\nadd_key01.c:83: TPASS: add_key call failed as expected: EINVAL (22)\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048575\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\nadd_key01.c:63: TINFO: The key type is big_key and plen is 1048576\\nadd_key01.c:70: TCONF: skipping unsupported big_key key\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 2\\nwarnings 0\\n", "retval": ["0"], "duration": 0.18529057502746582, "failed": 0, "passed": 6, "broken": 0, "skipped": 2, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key02", "status": "pass", "test": {"command": "add_key02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'asymmetric'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.idmap'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'cifs.spnego'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'pkcs7_test'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'rxrpc_s'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'user'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'logon'\\nadd_key02.c:59: TPASS: received expected EFAULT with key type 'big_key'\\n\\nSummary:\\npassed 9\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1040811538696289, "failed": 0, "passed": 9, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key03", "status": "pass", "test": {"command": "add_key03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadd_key03.c:80: TPASS: expectedly could not create another user's keyrings\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1072244644165039, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key04", "status": "pass", "test": {"command": "add_key04", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\ntst_buffers.c:57: TINFO: Test is using guarded buffers\\nadd_key04.c:71: TPASS: didn't crash while filling keyring\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.12587237358093262, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "add_key05", "status": "pass", "test": {"command": "add_key05", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_0\\nadd_key05.c:191: TINFO: User: 0, UID: 1000\\nadd_key05.c:88: TINFO: test max bytes under unprivileged user\\nadd_key05.c:113: TPASS: add_key(test_inv) failed as expected: EDQUOT (122)\\nadd_key05.c:136: TPASS: add_key(test_max) succeeded as expected\\nadd_key05.c:139: TPASS: allow reaching the max bytes exactly\\nadd_key05.c:50: TINFO: Created user ltp_add_key05_1\\nadd_key05.c:191: TINFO: User: 1, UID: 1001\\nadd_key05.c:149: TINFO: test max keys under unprivileged user\\nadd_key05.c:167: TPASS: add_key(test_invalid_key) failed as expected: EDQUOT (122)\\nadd_key05.c:174: TPASS: allow reaching the max key(200) exactly\\n\\nSummary:\\npassed 5\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 1.5329837799072266, "failed": 0, "passed": 5, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex01", "status": "pass", "test": {"command": "adjtimex01", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex01.c:24: TPASS: adjtimex() with mode 0x403f \\nadjtimex01.c:33: TPASS: adjtimex() with mode 0x8001 \\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.11798644065856934, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex02", "status": "pass", "test": {"command": "adjtimex02", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex02.c:111: TINFO: Testing variant: libc adjtimex()\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:95: TCONF: EFAULT is skipped for libc variant\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:111: TINFO: Testing variant: __NR_adjtimex syscall\\nadjtimex02.c:100: TPASS: adjtimex() error : EPERM (1)\\nadjtimex02.c:100: TPASS: adjtimex() error : EFAULT (14)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\nadjtimex02.c:100: TPASS: adjtimex() error : EINVAL (22)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.15890979766845703, "failed": 0, "passed": 7, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "adjtimex03", "status": "pass", "test": {"command": "adjtimex03", "arguments": [], "log": "tst_buffers.c:57: TINFO: Test is using guarded buffers\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:53: TINFO: expecting adjtimex() to fail with EINVAL with mode 0x8000\\nadjtimex03.c:62: TINFO: tai : 0x00000000\\nadjtimex03.c:73: TPASS: Data leak not observed\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08528661727905273, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm02", "status": "pass", "test": {"command": "alarm02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(2147483647) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\nalarm02.c:36: TPASS: alarm(1073741823) passed\\nalarm02.c:38: TPASS: alarm(0) passed\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.07705450057983398, "failed": 0, "passed": 6, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm03", "status": "pass", "test": {"command": "alarm03", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nalarm03.c:30: TPASS: alarm(0) in parent process passed\\nalarm03.c:26: TPASS: alarm(0) in child process passed\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.10616064071655273, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm05", "status": "pass", "test": {"command": "alarm05", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 23m 02s\\nalarm05.c:28: TPASS: alarm(10) passed\\nalarm05.c:30: TPASS: alarm(1) passed\\nalarm05.c:32: TPASS: alarms_fired == 1 (1)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 2.1208503246307373, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm06", "status": "pass", "test": {"command": "alarm06", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm06.c:35: TPASS: alarm(0) passed\\nalarm06.c:40: TPASS: alarms_received == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0792572498321533, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "alarm07", "status": "pass", "test": {"command": "alarm07", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 24m 28s\\nalarm07.c:36: TPASS: alarm_cnt == 1 (1)\\nalarm07.c:32: TPASS: alarm_cnt == 0 (0)\\n\\nSummary:\\npassed 2\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 3.0751540660858154, "failed": 0, "passed": 2, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "arch_prctl01", "status": "pass", "test": {"command": "arch_prctl01", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\narch_prctl01.c:58: TPASS: arch_prctl_set(ARCH_SET_CPUID, index) : ENODEV (19)\\narch_prctl01.c:66: TPASS: get cpuid succeed.\\n\\nSummary:\\npassed 4\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05827021598815918, "failed": 0, "passed": 4, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind01", "status": "pass", "test": {"command": "bind01", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binu1N5Rc as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind01.c:60: TPASS: invalid salen : EINVAL (22)\\nbind01.c:60: TPASS: invalid socket : ENOTSOCK (88)\\nbind01.c:63: TPASS: INADDR_ANYPORT passed\\nbind01.c:60: TPASS: UNIX-domain of current directory : EAFNOSUPPORT (97)\\nbind01.c:60: TPASS: non-local address : EADDRNOTAVAIL (99)\\nbind01.c:60: TPASS: sockfd is not a valid file descriptor : EBADF (9)\\nbind01.c:60: TPASS: a component of addr prefix is not a directory : ENOTDIR (20)\\n\\nSummary:\\npassed 7\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05970597267150879, "failed": 0, "passed": 7, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind02", "status": "pass", "test": {"command": "bind02", "arguments": [], "log": "tst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind02.c:53: TINFO: Switching credentials to user: nobody, group: nogroup\\nbind02.c:40: TPASS: bind() : EACCES (13)\\n\\nSummary:\\npassed 1\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.06115865707397461, "failed": 0, "passed": 1, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind03", "status": "pass", "test": {"command": "bind03", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binwHmPbr as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind03.c:31: TPASS: re-bind() socket : EINVAL (22)\\nbind03.c:38: TPASS: bind() with bound pathname : EADDRINUSE (98)\\nbind03.c:49: TPASS: check exist of SNAME_B : ENOENT (2)\\n\\nSummary:\\npassed 3\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.05811595916748047, "failed": 0, "passed": 3, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind04", "status": "pass", "test": {"command": "bind04", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binrtFHcr as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 22m 19s\\nbind04.c:117: TINFO: Testing AF_UNIX pathname stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX pathname seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract stream\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing AF_UNIX abstract seqpacket\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 1\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop TCP variant 2\\nbind04.c:149: TPASS: Communication successful\\nbind04.c:117: TINFO: Testing IPv4 loop SCTP\\nbind04.c:118: TCONF: socket(2, 1, 132) failed: EPROTONOSUPPORT (93)\\n\\nSummary:\\npassed 6\\nfailed 0\\nbroken 0\\nskipped 1\\nwarnings 0\\n", "retval": ["0"], "duration": 0.1007683277130127, "failed": 0, "passed": 6, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind05", "status": "pass", "test": {"command": "bind05", "arguments": [], "log": "tst_tmpdir.c:316: TINFO: Using /tmp/LTP_binQYnjSM as tmpdir (tmpfs filesystem)\\ntst_test.c:1900: TINFO: LTP version: 20250130\\ntst_test.c:1904: TINFO: Tested kernel: 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025 x86_64\\ntst_kconfig.c:88: TINFO: Parsing kernel config '/proc/config.gz'\\ntst_kconfig.c:676: TINFO: CONFIG_FAULT_INJECTION kernel option detected which might slow the execution\\ntst_test.c:1722: TINFO: Overall timeout per run is 0h 21m 36s\\nbind05.c:131: TINFO: Testing AF_UNIX pathname datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing AF_UNIX abstract datagram\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv4 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 loop UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 1\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP variant 2\\nbind05.c:167: TPASS: Communication successful\\nbind05.c:131: TINFO: Testing IPv6 any UDP-Lite\\nbind05.c:167: TPASS: Communication successful\\n\\nSummary:\\npassed 14\\nfailed 0\\nbroken 0\\nskipped 0\\nwarnings 0\\n", "retval": ["0"], "duration": 0.08443641662597656, "failed": 0, "passed": 14, "broken": 0, "skipped": 0, "warnings": 0, "result": "pass"}}, {"test_fqn": "bind06", "status": "pass", "test": {"command": "bind06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_map01", "status": "pass", "test": {"command": "bpf_map01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog01", "status": "pass", "test": {"command": "bpf_prog01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog02", "status": "pass", "test": {"command": "bpf_prog02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog03", "status": "pass", "test": {"command": "bpf_prog03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog04", "status": "pass", "test": {"command": "bpf_prog04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog05", "status": "pass", "test": {"command": "bpf_prog05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog06", "status": "pass", "test": {"command": "bpf_prog06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "bpf_prog07", "status": "pass", "test": {"command": "bpf_prog07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk01", "status": "pass", "test": {"command": "brk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "brk02", "status": "pass", "test": {"command": "brk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget01", "status": "pass", "test": {"command": "capget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capget02", "status": "pass", "test": {"command": "capget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset01", "status": "pass", "test": {"command": "capset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset02", "status": "pass", "test": {"command": "capset02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset03", "status": "pass", "test": {"command": "capset03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "capset04", "status": "pass", "test": {"command": "capset04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cacheflush01", "status": "pass", "test": {"command": "cacheflush01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat01", "status": "pass", "test": {"command": "cachestat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat02", "status": "pass", "test": {"command": "cachestat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat03", "status": "pass", "test": {"command": "cachestat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "cachestat04", "status": "pass", "test": {"command": "cachestat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01", "status": "pass", "test": {"command": "chdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chdir01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chdir04", "status": "pass", "test": {"command": "chdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01", "status": "pass", "test": {"command": "chmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "chmod01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod03", "status": "pass", "test": {"command": "chmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod05", "status": "pass", "test": {"command": "chmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod06", "status": "pass", "test": {"command": "chmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod07", "status": "pass", "test": {"command": "chmod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod08", "status": "pass", "test": {"command": "chmod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chmod09", "status": "pass", "test": {"command": "chmod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01", "status": "pass", "test": {"command": "chown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown01_16", "status": "pass", "test": {"command": "chown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02", "status": "pass", "test": {"command": "chown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown02_16", "status": "pass", "test": {"command": "chown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03", "status": "pass", "test": {"command": "chown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown03_16", "status": "pass", "test": {"command": "chown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04", "status": "pass", "test": {"command": "chown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown04_16", "status": "pass", "test": {"command": "chown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05", "status": "pass", "test": {"command": "chown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chown05_16", "status": "pass", "test": {"command": "chown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot01", "status": "pass", "test": {"command": "chroot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot02", "status": "pass", "test": {"command": "chroot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot03", "status": "pass", "test": {"command": "chroot03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "chroot04", "status": "pass", "test": {"command": "chroot04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime01", "status": "pass", "test": {"command": "clock_adjtime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_adjtime02", "status": "pass", "test": {"command": "clock_adjtime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_getres01", "status": "pass", "test": {"command": "clock_getres01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep01", "status": "pass", "test": {"command": "clock_nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep02", "status": "pass", "test": {"command": "clock_nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep03", "status": "pass", "test": {"command": "clock_nanosleep03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_nanosleep04", "status": "pass", "test": {"command": "clock_nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime01", "status": "pass", "test": {"command": "clock_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime02", "status": "pass", "test": {"command": "clock_gettime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime03", "status": "pass", "test": {"command": "clock_gettime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_gettime04", "status": "pass", "test": {"command": "clock_gettime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "leapsec01", "status": "pass", "test": {"command": "leapsec01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime01", "status": "pass", "test": {"command": "clock_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime02", "status": "pass", "test": {"command": "clock_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clock_settime03", "status": "pass", "test": {"command": "clock_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone01", "status": "pass", "test": {"command": "clone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone02", "status": "pass", "test": {"command": "clone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone03", "status": "pass", "test": {"command": "clone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone04", "status": "pass", "test": {"command": "clone04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone05", "status": "pass", "test": {"command": "clone05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone06", "status": "pass", "test": {"command": "clone06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone07", "status": "pass", "test": {"command": "clone07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone08", "status": "pass", "test": {"command": "clone08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone09", "status": "pass", "test": {"command": "clone09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone301", "status": "pass", "test": {"command": "clone301", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone302", "status": "pass", "test": {"command": "clone302", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "clone303", "status": "pass", "test": {"command": "clone303", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close01", "status": "pass", "test": {"command": "close01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close02", "status": "pass", "test": {"command": "close02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range01", "status": "pass", "test": {"command": "close_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "close_range02", "status": "pass", "test": {"command": "close_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "confstr01", "status": "pass", "test": {"command": "confstr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect01", "status": "pass", "test": {"command": "connect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "connect02", "status": "pass", "test": {"command": "connect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat01", "status": "pass", "test": {"command": "creat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat03", "status": "pass", "test": {"command": "creat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat04", "status": "pass", "test": {"command": "creat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat05", "status": "pass", "test": {"command": "creat05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat06", "status": "pass", "test": {"command": "creat06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat07", "status": "pass", "test": {"command": "creat07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat08", "status": "pass", "test": {"command": "creat08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "creat09", "status": "pass", "test": {"command": "creat09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module01", "status": "pass", "test": {"command": "delete_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module02", "status": "pass", "test": {"command": "delete_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "delete_module03", "status": "pass", "test": {"command": "delete_module03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup01", "status": "pass", "test": {"command": "dup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup02", "status": "pass", "test": {"command": "dup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup03", "status": "pass", "test": {"command": "dup03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup04", "status": "pass", "test": {"command": "dup04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup05", "status": "pass", "test": {"command": "dup05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup06", "status": "pass", "test": {"command": "dup06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup07", "status": "pass", "test": {"command": "dup07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup201", "status": "pass", "test": {"command": "dup201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup202", "status": "pass", "test": {"command": "dup202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup203", "status": "pass", "test": {"command": "dup203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup204", "status": "pass", "test": {"command": "dup204", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup205", "status": "pass", "test": {"command": "dup205", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup206", "status": "pass", "test": {"command": "dup206", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup207", "status": "pass", "test": {"command": "dup207", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_01", "status": "pass", "test": {"command": "dup3_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dup3_02", "status": "pass", "test": {"command": "dup3_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create01", "status": "pass", "test": {"command": "epoll_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create02", "status": "pass", "test": {"command": "epoll_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_01", "status": "pass", "test": {"command": "epoll_create1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_create1_02", "status": "pass", "test": {"command": "epoll_create1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll01", "status": "pass", "test": {"command": "epoll-ltp", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl01", "status": "pass", "test": {"command": "epoll_ctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl02", "status": "pass", "test": {"command": "epoll_ctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl03", "status": "pass", "test": {"command": "epoll_ctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl04", "status": "pass", "test": {"command": "epoll_ctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_ctl05", "status": "pass", "test": {"command": "epoll_ctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait01", "status": "pass", "test": {"command": "epoll_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait02", "status": "pass", "test": {"command": "epoll_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait03", "status": "pass", "test": {"command": "epoll_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait04", "status": "pass", "test": {"command": "epoll_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait05", "status": "pass", "test": {"command": "epoll_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait06", "status": "pass", "test": {"command": "epoll_wait06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_wait07", "status": "pass", "test": {"command": "epoll_wait07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait01", "status": "pass", "test": {"command": "epoll_pwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait02", "status": "pass", "test": {"command": "epoll_pwait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait03", "status": "pass", "test": {"command": "epoll_pwait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait04", "status": "pass", "test": {"command": "epoll_pwait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "epoll_pwait05", "status": "pass", "test": {"command": "epoll_pwait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd01", "status": "pass", "test": {"command": "eventfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd02", "status": "pass", "test": {"command": "eventfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd03", "status": "pass", "test": {"command": "eventfd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd04", "status": "pass", "test": {"command": "eventfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd05", "status": "pass", "test": {"command": "eventfd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd06", "status": "pass", "test": {"command": "eventfd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_01", "status": "pass", "test": {"command": "eventfd2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_02", "status": "pass", "test": {"command": "eventfd2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "eventfd2_03", "status": "pass", "test": {"command": "eventfd2_03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execl01", "status": "pass", "test": {"command": "execl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execle01", "status": "pass", "test": {"command": "execle01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execlp01", "status": "pass", "test": {"command": "execlp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execv01", "status": "pass", "test": {"command": "execv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve01", "status": "pass", "test": {"command": "execve01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve02", "status": "pass", "test": {"command": "execve02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve03", "status": "pass", "test": {"command": "execve03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve04", "status": "pass", "test": {"command": "execve04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve05", "status": "pass", "test": {"command": "execve05", "arguments": ["-i", "5", "-n", "32"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execve06", "status": "pass", "test": {"command": "execve06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execvp01", "status": "pass", "test": {"command": "execvp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat01", "status": "pass", "test": {"command": "execveat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat02", "status": "pass", "test": {"command": "execveat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "execveat03", "status": "pass", "test": {"command": "execveat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit01", "status": "pass", "test": {"command": "exit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit02", "status": "pass", "test": {"command": "exit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "exit_group01", "status": "pass", "test": {"command": "exit_group01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat01", "status": "pass", "test": {"command": "faccessat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat02", "status": "pass", "test": {"command": "faccessat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat201", "status": "pass", "test": {"command": "faccessat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "faccessat202", "status": "pass", "test": {"command": "faccessat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate01", "status": "pass", "test": {"command": "fallocate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate02", "status": "pass", "test": {"command": "fallocate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate03", "status": "pass", "test": {"command": "fallocate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate04", "status": "pass", "test": {"command": "fallocate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate05", "status": "pass", "test": {"command": "fallocate05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fallocate06", "status": "pass", "test": {"command": "fallocate06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr01", "status": "pass", "test": {"command": "fsetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsetxattr02", "status": "pass", "test": {"command": "fsetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01", "status": "pass", "test": {"command": "posix_fadvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise01_64", "status": "pass", "test": {"command": "posix_fadvise01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02", "status": "pass", "test": {"command": "posix_fadvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise02_64", "status": "pass", "test": {"command": "posix_fadvise02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03", "status": "pass", "test": {"command": "posix_fadvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise03_64", "status": "pass", "test": {"command": "posix_fadvise03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04", "status": "pass", "test": {"command": "posix_fadvise04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "posix_fadvise04_64", "status": "pass", "test": {"command": "posix_fadvise04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir01", "status": "pass", "test": {"command": "fchdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir02", "status": "pass", "test": {"command": "fchdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchdir03", "status": "pass", "test": {"command": "fchdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod01", "status": "pass", "test": {"command": "fchmod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod02", "status": "pass", "test": {"command": "fchmod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod03", "status": "pass", "test": {"command": "fchmod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod04", "status": "pass", "test": {"command": "fchmod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod05", "status": "pass", "test": {"command": "fchmod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmod06", "status": "pass", "test": {"command": "fchmod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat01", "status": "pass", "test": {"command": "fchmodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat02", "status": "pass", "test": {"command": "fchmodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_01", "status": "pass", "test": {"command": "fchmodat2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchmodat2_02", "status": "pass", "test": {"command": "fchmodat2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01", "status": "pass", "test": {"command": "fchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown01_16", "status": "pass", "test": {"command": "fchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02", "status": "pass", "test": {"command": "fchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown02_16", "status": "pass", "test": {"command": "fchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03", "status": "pass", "test": {"command": "fchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown03_16", "status": "pass", "test": {"command": "fchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04", "status": "pass", "test": {"command": "fchown04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown04_16", "status": "pass", "test": {"command": "fchown04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05", "status": "pass", "test": {"command": "fchown05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchown05_16", "status": "pass", "test": {"command": "fchown05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat01", "status": "pass", "test": {"command": "fchownat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fchownat02", "status": "pass", "test": {"command": "fchownat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01", "status": "pass", "test": {"command": "fcntl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl01_64", "status": "pass", "test": {"command": "fcntl01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02", "status": "pass", "test": {"command": "fcntl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl02_64", "status": "pass", "test": {"command": "fcntl02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03", "status": "pass", "test": {"command": "fcntl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl03_64", "status": "pass", "test": {"command": "fcntl03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04", "status": "pass", "test": {"command": "fcntl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl04_64", "status": "pass", "test": {"command": "fcntl04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05", "status": "pass", "test": {"command": "fcntl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl05_64", "status": "pass", "test": {"command": "fcntl05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07", "status": "pass", "test": {"command": "fcntl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl07_64", "status": "pass", "test": {"command": "fcntl07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08", "status": "pass", "test": {"command": "fcntl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl08_64", "status": "pass", "test": {"command": "fcntl08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09", "status": "pass", "test": {"command": "fcntl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl09_64", "status": "pass", "test": {"command": "fcntl09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10", "status": "pass", "test": {"command": "fcntl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl10_64", "status": "pass", "test": {"command": "fcntl10_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11", "status": "pass", "test": {"command": "fcntl11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl11_64", "status": "pass", "test": {"command": "fcntl11_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12", "status": "pass", "test": {"command": "fcntl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl12_64", "status": "pass", "test": {"command": "fcntl12_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13", "status": "pass", "test": {"command": "fcntl13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl13_64", "status": "pass", "test": {"command": "fcntl13_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14", "status": "pass", "test": {"command": "fcntl14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl14_64", "status": "pass", "test": {"command": "fcntl14_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15", "status": "pass", "test": {"command": "fcntl15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl15_64", "status": "pass", "test": {"command": "fcntl15_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16", "status": "pass", "test": {"command": "fcntl16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl16_64", "status": "pass", "test": {"command": "fcntl16_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17", "status": "pass", "test": {"command": "fcntl17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl17_64", "status": "pass", "test": {"command": "fcntl17_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18", "status": "pass", "test": {"command": "fcntl18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl18_64", "status": "pass", "test": {"command": "fcntl18_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19", "status": "pass", "test": {"command": "fcntl19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl19_64", "status": "pass", "test": {"command": "fcntl19_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20", "status": "pass", "test": {"command": "fcntl20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl20_64", "status": "pass", "test": {"command": "fcntl20_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21", "status": "pass", "test": {"command": "fcntl21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl21_64", "status": "pass", "test": {"command": "fcntl21_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22", "status": "pass", "test": {"command": "fcntl22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl22_64", "status": "pass", "test": {"command": "fcntl22_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23", "status": "pass", "test": {"command": "fcntl23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl23_64", "status": "pass", "test": {"command": "fcntl23_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24", "status": "pass", "test": {"command": "fcntl24", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl24_64", "status": "pass", "test": {"command": "fcntl24_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25", "status": "pass", "test": {"command": "fcntl25", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl25_64", "status": "pass", "test": {"command": "fcntl25_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26", "status": "pass", "test": {"command": "fcntl26", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl26_64", "status": "pass", "test": {"command": "fcntl26_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27", "status": "pass", "test": {"command": "fcntl27", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl27_64", "status": "pass", "test": {"command": "fcntl27_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29", "status": "pass", "test": {"command": "fcntl29", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl29_64", "status": "pass", "test": {"command": "fcntl29_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30", "status": "pass", "test": {"command": "fcntl30", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl30_64", "status": "pass", "test": {"command": "fcntl30_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31", "status": "pass", "test": {"command": "fcntl31", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl31_64", "status": "pass", "test": {"command": "fcntl31_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32", "status": "pass", "test": {"command": "fcntl32", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl32_64", "status": "pass", "test": {"command": "fcntl32_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33", "status": "pass", "test": {"command": "fcntl33", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl33_64", "status": "pass", "test": {"command": "fcntl33_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34", "status": "pass", "test": {"command": "fcntl34", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl34_64", "status": "pass", "test": {"command": "fcntl34_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35", "status": "pass", "test": {"command": "fcntl35", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl35_64", "status": "pass", "test": {"command": "fcntl35_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36", "status": "pass", "test": {"command": "fcntl36", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl36_64", "status": "pass", "test": {"command": "fcntl36_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37", "status": "pass", "test": {"command": "fcntl37", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl37_64", "status": "pass", "test": {"command": "fcntl37_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38", "status": "pass", "test": {"command": "fcntl38", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl38_64", "status": "pass", "test": {"command": "fcntl38_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39", "status": "pass", "test": {"command": "fcntl39", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fcntl39_64", "status": "pass", "test": {"command": "fcntl39_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync01", "status": "pass", "test": {"command": "fdatasync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync02", "status": "pass", "test": {"command": "fdatasync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fdatasync03", "status": "pass", "test": {"command": "fdatasync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr01", "status": "pass", "test": {"command": "fgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr02", "status": "pass", "test": {"command": "fgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fgetxattr03", "status": "pass", "test": {"command": "fgetxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module01", "status": "pass", "test": {"command": "finit_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "finit_module02", "status": "pass", "test": {"command": "finit_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr01", "status": "pass", "test": {"command": "flistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr02", "status": "pass", "test": {"command": "flistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flistxattr03", "status": "pass", "test": {"command": "flistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock01", "status": "pass", "test": {"command": "flock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock02", "status": "pass", "test": {"command": "flock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock03", "status": "pass", "test": {"command": "flock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock04", "status": "pass", "test": {"command": "flock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "flock06", "status": "pass", "test": {"command": "flock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fmtmsg01", "status": "pass", "test": {"command": "fmtmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork01", "status": "pass", "test": {"command": "fork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork03", "status": "pass", "test": {"command": "fork03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork04", "status": "pass", "test": {"command": "fork04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork05", "status": "pass", "test": {"command": "fork05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork06", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "1000"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork07", "status": "pass", "test": {"command": "fork07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork08", "status": "pass", "test": {"command": "fork08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork09", "status": "pass", "test": {"command": "fork09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork10", "status": "pass", "test": {"command": "fork10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork11", "status": "pass", "test": {"command": "fork_procs", "arguments": ["-n", "100"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork13", "status": "pass", "test": {"command": "fork13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fork14", "status": "pass", "test": {"command": "fork14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fpathconf01", "status": "pass", "test": {"command": "fpathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr01", "status": "pass", "test": {"command": "fremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fremovexattr02", "status": "pass", "test": {"command": "fremovexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig01", "status": "pass", "test": {"command": "fsconfig01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig02", "status": "pass", "test": {"command": "fsconfig02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsconfig03", "status": "pass", "test": {"command": "fsconfig03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount01", "status": "pass", "test": {"command": "fsmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsmount02", "status": "pass", "test": {"command": "fsmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen01", "status": "pass", "test": {"command": "fsopen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsopen02", "status": "pass", "test": {"command": "fsopen02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick01", "status": "pass", "test": {"command": "fspick01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fspick02", "status": "pass", "test": {"command": "fspick02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02", "status": "pass", "test": {"command": "fstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat02_64", "status": "pass", "test": {"command": "fstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03", "status": "pass", "test": {"command": "fstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstat03_64", "status": "pass", "test": {"command": "fstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatat01", "status": "pass", "test": {"command": "fstatat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01", "status": "pass", "test": {"command": "fstatfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs01_64", "status": "pass", "test": {"command": "fstatfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02", "status": "pass", "test": {"command": "fstatfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fstatfs02_64", "status": "pass", "test": {"command": "fstatfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync01", "status": "pass", "test": {"command": "fsync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync02", "status": "pass", "test": {"command": "fsync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync03", "status": "pass", "test": {"command": "fsync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fsync04", "status": "pass", "test": {"command": "fsync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01", "status": "pass", "test": {"command": "ftruncate01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate01_64", "status": "pass", "test": {"command": "ftruncate01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03", "status": "pass", "test": {"command": "ftruncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate03_64", "status": "pass", "test": {"command": "ftruncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04", "status": "pass", "test": {"command": "ftruncate04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ftruncate04_64", "status": "pass", "test": {"command": "ftruncate04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futimesat01", "status": "pass", "test": {"command": "futimesat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcontext01", "status": "pass", "test": {"command": "getcontext01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu01", "status": "pass", "test": {"command": "getcpu01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcpu02", "status": "pass", "test": {"command": "getcpu02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd01", "status": "pass", "test": {"command": "getcwd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd02", "status": "pass", "test": {"command": "getcwd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd03", "status": "pass", "test": {"command": "getcwd03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getcwd04", "status": "pass", "test": {"command": "getcwd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents01", "status": "pass", "test": {"command": "getdents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdents02", "status": "pass", "test": {"command": "getdents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getdomainname01", "status": "pass", "test": {"command": "getdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01", "status": "pass", "test": {"command": "getegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid01_16", "status": "pass", "test": {"command": "getegid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02", "status": "pass", "test": {"command": "getegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getegid02_16", "status": "pass", "test": {"command": "getegid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01", "status": "pass", "test": {"command": "geteuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid01_16", "status": "pass", "test": {"command": "geteuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02", "status": "pass", "test": {"command": "geteuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "geteuid02_16", "status": "pass", "test": {"command": "geteuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01", "status": "pass", "test": {"command": "getgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid01_16", "status": "pass", "test": {"command": "getgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03", "status": "pass", "test": {"command": "getgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgid03_16", "status": "pass", "test": {"command": "getgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01", "status": "pass", "test": {"command": "getgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups01_16", "status": "pass", "test": {"command": "getgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03", "status": "pass", "test": {"command": "getgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getgroups03_16", "status": "pass", "test": {"command": "getgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostbyname_r01", "status": "pass", "test": {"command": "gethostbyname_r01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostid01", "status": "pass", "test": {"command": "gethostid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname01", "status": "pass", "test": {"command": "gethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gethostname02", "status": "pass", "test": {"command": "gethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer01", "status": "pass", "test": {"command": "getitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getitimer02", "status": "pass", "test": {"command": "getitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpagesize01", "status": "pass", "test": {"command": "getpagesize01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpeername01", "status": "pass", "test": {"command": "getpeername01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid01", "status": "pass", "test": {"command": "getpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgid02", "status": "pass", "test": {"command": "getpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpgrp01", "status": "pass", "test": {"command": "getpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid01", "status": "pass", "test": {"command": "getpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpid02", "status": "pass", "test": {"command": "getpid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid01", "status": "pass", "test": {"command": "getppid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getppid02", "status": "pass", "test": {"command": "getppid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority01", "status": "pass", "test": {"command": "getpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getpriority02", "status": "pass", "test": {"command": "getpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom01", "status": "pass", "test": {"command": "getrandom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom02", "status": "pass", "test": {"command": "getrandom02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom03", "status": "pass", "test": {"command": "getrandom03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom04", "status": "pass", "test": {"command": "getrandom04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrandom05", "status": "pass", "test": {"command": "getrandom05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01", "status": "pass", "test": {"command": "getresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid01_16", "status": "pass", "test": {"command": "getresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02", "status": "pass", "test": {"command": "getresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid02_16", "status": "pass", "test": {"command": "getresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03", "status": "pass", "test": {"command": "getresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresgid03_16", "status": "pass", "test": {"command": "getresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01", "status": "pass", "test": {"command": "getresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid01_16", "status": "pass", "test": {"command": "getresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02", "status": "pass", "test": {"command": "getresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid02_16", "status": "pass", "test": {"command": "getresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03", "status": "pass", "test": {"command": "getresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getresuid03_16", "status": "pass", "test": {"command": "getresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit01", "status": "pass", "test": {"command": "getrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit02", "status": "pass", "test": {"command": "getrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrlimit03", "status": "pass", "test": {"command": "getrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy01", "status": "pass", "test": {"command": "get_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_mempolicy02", "status": "pass", "test": {"command": "get_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "get_robust_list01", "status": "pass", "test": {"command": "get_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage01", "status": "pass", "test": {"command": "getrusage01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage02", "status": "pass", "test": {"command": "getrusage02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage03", "status": "pass", "test": {"command": "getrusage03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getrusage04", "status": "pass", "test": {"command": "getrusage04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid01", "status": "pass", "test": {"command": "getsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsid02", "status": "pass", "test": {"command": "getsid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockname01", "status": "pass", "test": {"command": "getsockname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt01", "status": "pass", "test": {"command": "getsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getsockopt02", "status": "pass", "test": {"command": "getsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid01", "status": "pass", "test": {"command": "gettid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettid02", "status": "pass", "test": {"command": "gettid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday01", "status": "pass", "test": {"command": "gettimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "gettimeofday02", "status": "pass", "test": {"command": "gettimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01", "status": "pass", "test": {"command": "getuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid01_16", "status": "pass", "test": {"command": "getuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03", "status": "pass", "test": {"command": "getuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getuid03_16", "status": "pass", "test": {"command": "getuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr01", "status": "pass", "test": {"command": "getxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr02", "status": "pass", "test": {"command": "getxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr03", "status": "pass", "test": {"command": "getxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr04", "status": "pass", "test": {"command": "getxattr04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "getxattr05", "status": "pass", "test": {"command": "getxattr05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module01", "status": "pass", "test": {"command": "init_module01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "init_module02", "status": "pass", "test": {"command": "init_module02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl01", "status": "pass", "test": {"command": "ioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl02", "status": "pass", "test": {"command": "test_ioctl", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl03", "status": "pass", "test": {"command": "ioctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl04", "status": "pass", "test": {"command": "ioctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl05", "status": "pass", "test": {"command": "ioctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl06", "status": "pass", "test": {"command": "ioctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl07", "status": "pass", "test": {"command": "ioctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl08", "status": "pass", "test": {"command": "ioctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl09", "status": "pass", "test": {"command": "ioctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop01", "status": "pass", "test": {"command": "ioctl_loop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop02", "status": "pass", "test": {"command": "ioctl_loop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop03", "status": "pass", "test": {"command": "ioctl_loop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop04", "status": "pass", "test": {"command": "ioctl_loop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop05", "status": "pass", "test": {"command": "ioctl_loop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop06", "status": "pass", "test": {"command": "ioctl_loop06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_loop07", "status": "pass", "test": {"command": "ioctl_loop07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns01", "status": "pass", "test": {"command": "ioctl_ns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns02", "status": "pass", "test": {"command": "ioctl_ns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns03", "status": "pass", "test": {"command": "ioctl_ns03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns04", "status": "pass", "test": {"command": "ioctl_ns04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns05", "status": "pass", "test": {"command": "ioctl_ns05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns06", "status": "pass", "test": {"command": "ioctl_ns06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ns07", "status": "pass", "test": {"command": "ioctl_ns07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_sg01", "status": "pass", "test": {"command": "ioctl_sg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone01", "status": "pass", "test": {"command": "ioctl_ficlone01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone02", "status": "pass", "test": {"command": "ioctl_ficlone02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlone03", "status": "pass", "test": {"command": "ioctl_ficlone03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange01", "status": "pass", "test": {"command": "ioctl_ficlonerange01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioctl_ficlonerange02", "status": "pass", "test": {"command": "ioctl_ficlonerange02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_01", "status": "pass", "test": {"command": "inotify_init1_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify_init1_02", "status": "pass", "test": {"command": "inotify_init1_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify01", "status": "pass", "test": {"command": "inotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify02", "status": "pass", "test": {"command": "inotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify03", "status": "pass", "test": {"command": "inotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify04", "status": "pass", "test": {"command": "inotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify05", "status": "pass", "test": {"command": "inotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify06", "status": "pass", "test": {"command": "inotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify07", "status": "pass", "test": {"command": "inotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify08", "status": "pass", "test": {"command": "inotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify09", "status": "pass", "test": {"command": "inotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify10", "status": "pass", "test": {"command": "inotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify11", "status": "pass", "test": {"command": "inotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "inotify12", "status": "pass", "test": {"command": "inotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify01", "status": "pass", "test": {"command": "fanotify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify02", "status": "pass", "test": {"command": "fanotify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify03", "status": "pass", "test": {"command": "fanotify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify04", "status": "pass", "test": {"command": "fanotify04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify05", "status": "pass", "test": {"command": "fanotify05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify06", "status": "pass", "test": {"command": "fanotify06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify07", "status": "pass", "test": {"command": "fanotify07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify08", "status": "pass", "test": {"command": "fanotify08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify09", "status": "pass", "test": {"command": "fanotify09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify10", "status": "pass", "test": {"command": "fanotify10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify11", "status": "pass", "test": {"command": "fanotify11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify12", "status": "pass", "test": {"command": "fanotify12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify13", "status": "pass", "test": {"command": "fanotify13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify14", "status": "pass", "test": {"command": "fanotify14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify15", "status": "pass", "test": {"command": "fanotify15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify16", "status": "pass", "test": {"command": "fanotify16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify17", "status": "pass", "test": {"command": "fanotify17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify18", "status": "pass", "test": {"command": "fanotify18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify19", "status": "pass", "test": {"command": "fanotify19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify20", "status": "pass", "test": {"command": "fanotify20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify21", "status": "pass", "test": {"command": "fanotify21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify22", "status": "pass", "test": {"command": "fanotify22", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "fanotify23", "status": "pass", "test": {"command": "fanotify23", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm01", "status": "pass", "test": {"command": "ioperm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioperm02", "status": "pass", "test": {"command": "ioperm02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl01", "status": "pass", "test": {"command": "iopl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "iopl02", "status": "pass", "test": {"command": "iopl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_get01", "status": "pass", "test": {"command": "ioprio_get01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set01", "status": "pass", "test": {"command": "ioprio_set01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set02", "status": "pass", "test": {"command": "ioprio_set02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ioprio_set03", "status": "pass", "test": {"command": "ioprio_set03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel01", "status": "pass", "test": {"command": "io_cancel01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_cancel02", "status": "pass", "test": {"command": "io_cancel02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy01", "status": "pass", "test": {"command": "io_destroy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_destroy02", "status": "pass", "test": {"command": "io_destroy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents01", "status": "pass", "test": {"command": "io_getevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_getevents02", "status": "pass", "test": {"command": "io_getevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents01", "status": "pass", "test": {"command": "io_pgetevents01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_pgetevents02", "status": "pass", "test": {"command": "io_pgetevents02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup01", "status": "pass", "test": {"command": "io_setup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_setup02", "status": "pass", "test": {"command": "io_setup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit01", "status": "pass", "test": {"command": "io_submit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit02", "status": "pass", "test": {"command": "io_submit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_submit03", "status": "pass", "test": {"command": "io_submit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl01", "status": "pass", "test": {"command": "keyctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl02", "status": "pass", "test": {"command": "keyctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl03", "status": "pass", "test": {"command": "keyctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl04", "status": "pass", "test": {"command": "keyctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl05", "status": "pass", "test": {"command": "keyctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl06", "status": "pass", "test": {"command": "keyctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl07", "status": "pass", "test": {"command": "keyctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl08", "status": "pass", "test": {"command": "keyctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "keyctl09", "status": "pass", "test": {"command": "keyctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp01", "status": "pass", "test": {"command": "kcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp02", "status": "pass", "test": {"command": "kcmp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kcmp03", "status": "pass", "test": {"command": "kcmp03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill02", "status": "pass", "test": {"command": "kill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill03", "status": "pass", "test": {"command": "kill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill05", "status": "pass", "test": {"command": "kill05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill06", "status": "pass", "test": {"command": "kill06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill07", "status": "pass", "test": {"command": "kill07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill08", "status": "pass", "test": {"command": "kill08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill09", "status": "pass", "test": {"command": "kill09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill10", "status": "pass", "test": {"command": "kill10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill11", "status": "pass", "test": {"command": "kill11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill12", "status": "pass", "test": {"command": "kill12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "kill13", "status": "pass", "test": {"command": "kill13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock01", "status": "pass", "test": {"command": "landlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock02", "status": "pass", "test": {"command": "landlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock03", "status": "pass", "test": {"command": "landlock03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock04", "status": "pass", "test": {"command": "landlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock05", "status": "pass", "test": {"command": "landlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock06", "status": "pass", "test": {"command": "landlock06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock07", "status": "pass", "test": {"command": "landlock07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "landlock08", "status": "pass", "test": {"command": "landlock08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01", "status": "pass", "test": {"command": "lchown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown01_16", "status": "pass", "test": {"command": "lchown01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02", "status": "pass", "test": {"command": "lchown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03", "status": "pass", "test": {"command": "lchown03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown02_16", "status": "pass", "test": {"command": "lchown02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lchown03_16", "status": "pass", "test": {"command": "lchown03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr01", "status": "pass", "test": {"command": "lgetxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lgetxattr02", "status": "pass", "test": {"command": "lgetxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "link01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link02", "status": "pass", "test": {"command": "link02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link04", "status": "pass", "test": {"command": "link04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link05", "status": "pass", "test": {"command": "link05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "link08", "status": "pass", "test": {"command": "link08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat01", "status": "pass", "test": {"command": "linkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "linkat02", "status": "pass", "test": {"command": "linkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listen01", "status": "pass", "test": {"command": "listen01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount01", "status": "pass", "test": {"command": "listmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount02", "status": "pass", "test": {"command": "listmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount03", "status": "pass", "test": {"command": "listmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listmount04", "status": "pass", "test": {"command": "listmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr01", "status": "pass", "test": {"command": "listxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr02", "status": "pass", "test": {"command": "listxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "listxattr03", "status": "pass", "test": {"command": "listxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr01", "status": "pass", "test": {"command": "llistxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr02", "status": "pass", "test": {"command": "llistxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llistxattr03", "status": "pass", "test": {"command": "llistxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek01", "status": "pass", "test": {"command": "llseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek02", "status": "pass", "test": {"command": "llseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "llseek03", "status": "pass", "test": {"command": "llseek03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lremovexattr01", "status": "pass", "test": {"command": "lremovexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek01", "status": "pass", "test": {"command": "lseek01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek02", "status": "pass", "test": {"command": "lseek02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek07", "status": "pass", "test": {"command": "lseek07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lseek11", "status": "pass", "test": {"command": "lseek11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01", "status": "pass", "test": {"command": "lstat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat01_64", "status": "pass", "test": {"command": "lstat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02", "status": "pass", "test": {"command": "lstat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat02_64", "status": "pass", "test": {"command": "lstat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03", "status": "pass", "test": {"command": "lstat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "lstat03_64", "status": "pass", "test": {"command": "lstat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo02", "status": "pass", "test": {"command": "mallinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallinfo2_01", "status": "pass", "test": {"command": "mallinfo2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mallopt01", "status": "pass", "test": {"command": "mallopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind01", "status": "pass", "test": {"command": "mbind01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind02", "status": "pass", "test": {"command": "mbind02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind03", "status": "pass", "test": {"command": "mbind03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mbind04", "status": "pass", "test": {"command": "mbind04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memset01", "status": "pass", "test": {"command": "memset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcmp01", "status": "pass", "test": {"command": "memcmp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memcpy01", "status": "pass", "test": {"command": "memcpy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages01", "status": "pass", "test": {"command": "migrate_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages02", "status": "pass", "test": {"command": "migrate_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "migrate_pages03", "status": "pass", "test": {"command": "migrate_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall01", "status": "pass", "test": {"command": "mlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall02", "status": "pass", "test": {"command": "mlockall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlockall03", "status": "pass", "test": {"command": "mlockall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir02", "status": "pass", "test": {"command": "mkdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir03", "status": "pass", "test": {"command": "mkdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir04", "status": "pass", "test": {"command": "mkdir04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir05", "status": "pass", "test": {"command": "mkdir05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdir09", "status": "pass", "test": {"command": "mkdir09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat01", "status": "pass", "test": {"command": "mkdirat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mkdirat02", "status": "pass", "test": {"command": "mkdirat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod01", "status": "pass", "test": {"command": "mknod01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod02", "status": "pass", "test": {"command": "mknod02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod03", "status": "pass", "test": {"command": "mknod03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod04", "status": "pass", "test": {"command": "mknod04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod05", "status": "pass", "test": {"command": "mknod05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod06", "status": "pass", "test": {"command": "mknod06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod07", "status": "pass", "test": {"command": "mknod07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod08", "status": "pass", "test": {"command": "mknod08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknod09", "status": "pass", "test": {"command": "mknod09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat01", "status": "pass", "test": {"command": "mknodat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mknodat02", "status": "pass", "test": {"command": "mknodat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock01", "status": "pass", "test": {"command": "mlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock02", "status": "pass", "test": {"command": "mlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock03", "status": "pass", "test": {"command": "mlock03", "arguments": ["-i", "20"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock04", "status": "pass", "test": {"command": "mlock04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock05", "status": "pass", "test": {"command": "mlock05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock201", "status": "pass", "test": {"command": "mlock201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock202", "status": "pass", "test": {"command": "mlock202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mlock203", "status": "pass", "test": {"command": "mlock203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "qmm01", "status": "pass", "test": {"command": "mmap001", "arguments": ["-m", "1"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap01", "status": "pass", "test": {"command": "mmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap02", "status": "pass", "test": {"command": "mmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap03", "status": "pass", "test": {"command": "mmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap04", "status": "pass", "test": {"command": "mmap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap05", "status": "pass", "test": {"command": "mmap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap06", "status": "pass", "test": {"command": "mmap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap08", "status": "pass", "test": {"command": "mmap08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap09", "status": "pass", "test": {"command": "mmap09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap12", "status": "pass", "test": {"command": "mmap12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap13", "status": "pass", "test": {"command": "mmap13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap14", "status": "pass", "test": {"command": "mmap14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap15", "status": "pass", "test": {"command": "mmap15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap16", "status": "pass", "test": {"command": "mmap16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap17", "status": "pass", "test": {"command": "mmap17", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap18", "status": "pass", "test": {"command": "mmap18", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap19", "status": "pass", "test": {"command": "mmap19", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mmap20", "status": "pass", "test": {"command": "mmap20", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt01", "status": "pass", "test": {"command": "modify_ldt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt02", "status": "pass", "test": {"command": "modify_ldt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "modify_ldt03", "status": "pass", "test": {"command": "modify_ldt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount01", "status": "pass", "test": {"command": "mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount02", "status": "pass", "test": {"command": "mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount03", "status": "pass", "test": {"command": "mount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount04", "status": "pass", "test": {"command": "mount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount05", "status": "pass", "test": {"command": "mount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount06", "status": "pass", "test": {"command": "mount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount07", "status": "pass", "test": {"command": "mount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mount_setattr01", "status": "pass", "test": {"command": "mount_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount01", "status": "pass", "test": {"command": "move_mount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_mount02", "status": "pass", "test": {"command": "move_mount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages01", "status": "pass", "test": {"command": "move_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages02", "status": "pass", "test": {"command": "move_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages03", "status": "pass", "test": {"command": "move_pages03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages04", "status": "pass", "test": {"command": "move_pages04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages05", "status": "pass", "test": {"command": "move_pages05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages06", "status": "pass", "test": {"command": "move_pages06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages07", "status": "pass", "test": {"command": "move_pages07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages09", "status": "pass", "test": {"command": "move_pages09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages10", "status": "pass", "test": {"command": "move_pages10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages11", "status": "pass", "test": {"command": "move_pages11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "move_pages12", "status": "pass", "test": {"command": "move_pages12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect01", "status": "pass", "test": {"command": "mprotect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect02", "status": "pass", "test": {"command": "mprotect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect03", "status": "pass", "test": {"command": "mprotect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect04", "status": "pass", "test": {"command": "mprotect04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mprotect05", "status": "pass", "test": {"command": "mprotect05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pkey01", "status": "pass", "test": {"command": "pkey01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify01", "status": "pass", "test": {"command": "mq_notify01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify02", "status": "pass", "test": {"command": "mq_notify02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_notify03", "status": "pass", "test": {"command": "mq_notify03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_open01", "status": "pass", "test": {"command": "mq_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedreceive01", "status": "pass", "test": {"command": "mq_timedreceive01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_timedsend01", "status": "pass", "test": {"command": "mq_timedsend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mq_unlink01", "status": "pass", "test": {"command": "mq_unlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap01", "status": "pass", "test": {"command": "mremap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap02", "status": "pass", "test": {"command": "mremap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap03", "status": "pass", "test": {"command": "mremap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap04", "status": "pass", "test": {"command": "mremap04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap05", "status": "pass", "test": {"command": "mremap05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mremap06", "status": "pass", "test": {"command": "mremap06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal01", "status": "pass", "test": {"command": "mseal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mseal02", "status": "pass", "test": {"command": "mseal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl01", "status": "pass", "test": {"command": "msgctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl02", "status": "pass", "test": {"command": "msgctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl03", "status": "pass", "test": {"command": "msgctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl04", "status": "pass", "test": {"command": "msgctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl05", "status": "pass", "test": {"command": "msgctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl06", "status": "pass", "test": {"command": "msgctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgctl12", "status": "pass", "test": {"command": "msgctl12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgstress01", "status": "pass", "test": {"command": "msgstress01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget01", "status": "pass", "test": {"command": "msgget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget02", "status": "pass", "test": {"command": "msgget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget03", "status": "pass", "test": {"command": "msgget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget04", "status": "pass", "test": {"command": "msgget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgget05", "status": "pass", "test": {"command": "msgget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv01", "status": "pass", "test": {"command": "msgrcv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv02", "status": "pass", "test": {"command": "msgrcv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv03", "status": "pass", "test": {"command": "msgrcv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv05", "status": "pass", "test": {"command": "msgrcv05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv06", "status": "pass", "test": {"command": "msgrcv06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv07", "status": "pass", "test": {"command": "msgrcv07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgrcv08", "status": "pass", "test": {"command": "msgrcv08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd01", "status": "pass", "test": {"command": "msgsnd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd02", "status": "pass", "test": {"command": "msgsnd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd05", "status": "pass", "test": {"command": "msgsnd05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msgsnd06", "status": "pass", "test": {"command": "msgsnd06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync01", "status": "pass", "test": {"command": "msync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync02", "status": "pass", "test": {"command": "msync02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync03", "status": "pass", "test": {"command": "msync03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "msync04", "status": "pass", "test": {"command": "msync04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock01", "status": "pass", "test": {"command": "munlock01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlock02", "status": "pass", "test": {"command": "munlock02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munlockall01", "status": "pass", "test": {"command": "munlockall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap01", "status": "pass", "test": {"command": "munmap01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap02", "status": "pass", "test": {"command": "munmap02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "munmap03", "status": "pass", "test": {"command": "munmap03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep01", "status": "pass", "test": {"command": "nanosleep01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep02", "status": "pass", "test": {"command": "nanosleep02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nanosleep04", "status": "pass", "test": {"command": "nanosleep04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at01", "status": "pass", "test": {"command": "name_to_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "name_to_handle_at02", "status": "pass", "test": {"command": "name_to_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw01", "status": "pass", "test": {"command": "nftw01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nftw6401", "status": "pass", "test": {"command": "nftw6401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice01", "status": "pass", "test": {"command": "nice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice02", "status": "pass", "test": {"command": "nice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice03", "status": "pass", "test": {"command": "nice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice04", "status": "pass", "test": {"command": "nice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "nice05", "status": "pass", "test": {"command": "nice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open01", "status": "pass", "test": {"command": "open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open02", "status": "pass", "test": {"command": "open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open03", "status": "pass", "test": {"command": "open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open04", "status": "pass", "test": {"command": "open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open06", "status": "pass", "test": {"command": "open06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open07", "status": "pass", "test": {"command": "open07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open08", "status": "pass", "test": {"command": "open08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open09", "status": "pass", "test": {"command": "open09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open10", "status": "pass", "test": {"command": "open10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open11", "status": "pass", "test": {"command": "open11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open12", "status": "pass", "test": {"command": "open12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open13", "status": "pass", "test": {"command": "open13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open14", "status": "pass", "test": {"command": "open14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open15", "status": "pass", "test": {"command": "open15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat01", "status": "pass", "test": {"command": "openat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat02", "status": "pass", "test": {"command": "openat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat03", "status": "pass", "test": {"command": "openat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat04", "status": "pass", "test": {"command": "openat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat201", "status": "pass", "test": {"command": "openat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat202", "status": "pass", "test": {"command": "openat202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "openat203", "status": "pass", "test": {"command": "openat203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at01", "status": "pass", "test": {"command": "open_by_handle_at01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_by_handle_at02", "status": "pass", "test": {"command": "open_by_handle_at02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree01", "status": "pass", "test": {"command": "open_tree01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "open_tree02", "status": "pass", "test": {"command": "open_tree02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore01", "status": "pass", "test": {"command": "mincore01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore02", "status": "pass", "test": {"command": "mincore02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore03", "status": "pass", "test": {"command": "mincore03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "mincore04", "status": "pass", "test": {"command": "mincore04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise01", "status": "pass", "test": {"command": "madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise02", "status": "pass", "test": {"command": "madvise02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise03", "status": "pass", "test": {"command": "madvise03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise05", "status": "pass", "test": {"command": "madvise05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise06", "status": "pass", "test": {"command": "madvise06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise07", "status": "pass", "test": {"command": "madvise07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise08", "status": "pass", "test": {"command": "madvise08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise09", "status": "pass", "test": {"command": "madvise09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise10", "status": "pass", "test": {"command": "madvise10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise11", "status": "pass", "test": {"command": "madvise11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "madvise12", "status": "pass", "test": {"command": "madvise12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "newuname01", "status": "pass", "test": {"command": "newuname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf01", "status": "pass", "test": {"command": "pathconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pathconf02", "status": "pass", "test": {"command": "pathconf02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause01", "status": "pass", "test": {"command": "pause01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause02", "status": "pass", "test": {"command": "pause02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pause03", "status": "pass", "test": {"command": "pause03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality01", "status": "pass", "test": {"command": "personality01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "personality02", "status": "pass", "test": {"command": "personality02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd01", "status": "pass", "test": {"command": "pidfd_getfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_getfd02", "status": "pass", "test": {"command": "pidfd_getfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open01", "status": "pass", "test": {"command": "pidfd_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open02", "status": "pass", "test": {"command": "pidfd_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open03", "status": "pass", "test": {"command": "pidfd_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_open04", "status": "pass", "test": {"command": "pidfd_open04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal01", "status": "pass", "test": {"command": "pidfd_send_signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal02", "status": "pass", "test": {"command": "pidfd_send_signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pidfd_send_signal03", "status": "pass", "test": {"command": "pidfd_send_signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe01", "status": "pass", "test": {"command": "pipe01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe02", "status": "pass", "test": {"command": "pipe02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe03", "status": "pass", "test": {"command": "pipe03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe04", "status": "pass", "test": {"command": "pipe04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe05", "status": "pass", "test": {"command": "pipe05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe06", "status": "pass", "test": {"command": "pipe06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe07", "status": "pass", "test": {"command": "pipe07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe08", "status": "pass", "test": {"command": "pipe08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe09", "status": "pass", "test": {"command": "pipe09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe10", "status": "pass", "test": {"command": "pipe10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe11", "status": "pass", "test": {"command": "pipe11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe12", "status": "pass", "test": {"command": "pipe12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe13", "status": "pass", "test": {"command": "pipe13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe14", "status": "pass", "test": {"command": "pipe14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe15", "status": "pass", "test": {"command": "pipe15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_01", "status": "pass", "test": {"command": "pipe2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_02", "status": "pass", "test": {"command": "pipe2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pipe2_04", "status": "pass", "test": {"command": "pipe2_04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pivot_root01", "status": "pass", "test": {"command": "pivot_root01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll01", "status": "pass", "test": {"command": "poll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "poll02", "status": "pass", "test": {"command": "poll02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ppoll01", "status": "pass", "test": {"command": "ppoll01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl01", "status": "pass", "test": {"command": "prctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl02", "status": "pass", "test": {"command": "prctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl03", "status": "pass", "test": {"command": "prctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl05", "status": "pass", "test": {"command": "prctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl06", "status": "pass", "test": {"command": "prctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl07", "status": "pass", "test": {"command": "prctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl08", "status": "pass", "test": {"command": "prctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl09", "status": "pass", "test": {"command": "prctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prctl10", "status": "pass", "test": {"command": "prctl10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01", "status": "pass", "test": {"command": "pread01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread01_64", "status": "pass", "test": {"command": "pread01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02", "status": "pass", "test": {"command": "pread02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pread02_64", "status": "pass", "test": {"command": "pread02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01", "status": "pass", "test": {"command": "preadv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv01_64", "status": "pass", "test": {"command": "preadv01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02", "status": "pass", "test": {"command": "preadv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv02_64", "status": "pass", "test": {"command": "preadv02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03", "status": "pass", "test": {"command": "preadv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv03_64", "status": "pass", "test": {"command": "preadv03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201", "status": "pass", "test": {"command": "preadv201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv201_64", "status": "pass", "test": {"command": "preadv201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202", "status": "pass", "test": {"command": "preadv202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv202_64", "status": "pass", "test": {"command": "preadv202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203", "status": "pass", "test": {"command": "preadv203", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "preadv203_64", "status": "pass", "test": {"command": "preadv203_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "profil01", "status": "pass", "test": {"command": "profil01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv01", "status": "pass", "test": {"command": "process_vm01", "arguments": ["-r"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv02", "status": "pass", "test": {"command": "process_vm_readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_readv03", "status": "pass", "test": {"command": "process_vm_readv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev01", "status": "pass", "test": {"command": "process_vm01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_vm_writev02", "status": "pass", "test": {"command": "process_vm_writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "process_madvise01", "status": "pass", "test": {"command": "process_madvise01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "prot_hsymlinks", "status": "pass", "test": {"command": "prot_hsymlinks", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w", "status": "pass", "test": {"command": "dirtyc0w", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtyc0w_shmem", "status": "pass", "test": {"command": "dirtyc0w_shmem", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "dirtypipe", "status": "pass", "test": {"command": "dirtypipe", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01", "status": "pass", "test": {"command": "pselect01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect01_64", "status": "pass", "test": {"command": "pselect01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02", "status": "pass", "test": {"command": "pselect02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect02_64", "status": "pass", "test": {"command": "pselect02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03", "status": "pass", "test": {"command": "pselect03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pselect03_64", "status": "pass", "test": {"command": "pselect03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace01", "status": "pass", "test": {"command": "ptrace01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace02", "status": "pass", "test": {"command": "ptrace02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace03", "status": "pass", "test": {"command": "ptrace03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace04", "status": "pass", "test": {"command": "ptrace04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace05", "status": "pass", "test": {"command": "ptrace05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace06", "status": "pass", "test": {"command": "ptrace06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace07", "status": "pass", "test": {"command": "ptrace07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace08", "status": "pass", "test": {"command": "ptrace08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace09", "status": "pass", "test": {"command": "ptrace09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace10", "status": "pass", "test": {"command": "ptrace10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ptrace11", "status": "pass", "test": {"command": "ptrace11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01", "status": "pass", "test": {"command": "pwrite01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02", "status": "pass", "test": {"command": "pwrite02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03", "status": "pass", "test": {"command": "pwrite03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04", "status": "pass", "test": {"command": "pwrite04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite01_64", "status": "pass", "test": {"command": "pwrite01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite02_64", "status": "pass", "test": {"command": "pwrite02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite03_64", "status": "pass", "test": {"command": "pwrite03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwrite04_64", "status": "pass", "test": {"command": "pwrite04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01", "status": "pass", "test": {"command": "pwritev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev01_64", "status": "pass", "test": {"command": "pwritev01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02", "status": "pass", "test": {"command": "pwritev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev02_64", "status": "pass", "test": {"command": "pwritev02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03", "status": "pass", "test": {"command": "pwritev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev03_64", "status": "pass", "test": {"command": "pwritev03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201", "status": "pass", "test": {"command": "pwritev201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev201_64", "status": "pass", "test": {"command": "pwritev201_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202", "status": "pass", "test": {"command": "pwritev202", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "pwritev202_64", "status": "pass", "test": {"command": "pwritev202_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl01", "status": "pass", "test": {"command": "quotactl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl02", "status": "pass", "test": {"command": "quotactl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl03", "status": "pass", "test": {"command": "quotactl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl04", "status": "pass", "test": {"command": "quotactl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl05", "status": "pass", "test": {"command": "quotactl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl06", "status": "pass", "test": {"command": "quotactl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl07", "status": "pass", "test": {"command": "quotactl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl08", "status": "pass", "test": {"command": "quotactl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "quotactl09", "status": "pass", "test": {"command": "quotactl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read01", "status": "pass", "test": {"command": "read01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read02", "status": "pass", "test": {"command": "read02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read03", "status": "pass", "test": {"command": "read03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "read04", "status": "pass", "test": {"command": "read04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead01", "status": "pass", "test": {"command": "readahead01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readahead02", "status": "pass", "test": {"command": "readahead02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir01", "status": "pass", "test": {"command": "readdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readdir21", "status": "pass", "test": {"command": "readdir21", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "readlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink01", "status": "pass", "test": {"command": "readlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlink03", "status": "pass", "test": {"command": "readlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat01", "status": "pass", "test": {"command": "readlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readlinkat02", "status": "pass", "test": {"command": "readlinkat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv01", "status": "pass", "test": {"command": "readv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "readv02", "status": "pass", "test": {"command": "readv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "realpath01", "status": "pass", "test": {"command": "realpath01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot01", "status": "pass", "test": {"command": "reboot01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "reboot02", "status": "pass", "test": {"command": "reboot02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recv01", "status": "pass", "test": {"command": "recv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvfrom01", "status": "pass", "test": {"command": "recvfrom01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg01", "status": "pass", "test": {"command": "recvmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg02", "status": "pass", "test": {"command": "recvmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmsg03", "status": "pass", "test": {"command": "recvmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "recvmmsg01", "status": "pass", "test": {"command": "recvmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages01", "status": "pass", "test": {"command": "remap_file_pages01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "remap_file_pages02", "status": "pass", "test": {"command": "remap_file_pages02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr01", "status": "pass", "test": {"command": "removexattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "removexattr02", "status": "pass", "test": {"command": "removexattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01", "status": "pass", "test": {"command": "rename01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename01A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rename01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename03", "status": "pass", "test": {"command": "rename03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename04", "status": "pass", "test": {"command": "rename04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename05", "status": "pass", "test": {"command": "rename05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename06", "status": "pass", "test": {"command": "rename06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename07", "status": "pass", "test": {"command": "rename07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename08", "status": "pass", "test": {"command": "rename08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename09", "status": "pass", "test": {"command": "rename09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename10", "status": "pass", "test": {"command": "rename10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename11", "status": "pass", "test": {"command": "rename11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename12", "status": "pass", "test": {"command": "rename12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename13", "status": "pass", "test": {"command": "rename13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename14", "status": "pass", "test": {"command": "rename14", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rename15", "status": "pass", "test": {"command": "rename15", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat01", "status": "pass", "test": {"command": "renameat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat201", "status": "pass", "test": {"command": "renameat201", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "renameat202", "status": "pass", "test": {"command": "renameat202", "arguments": ["-i", "10"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key01", "status": "pass", "test": {"command": "request_key01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key02", "status": "pass", "test": {"command": "request_key02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key03", "status": "pass", "test": {"command": "request_key03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key04", "status": "pass", "test": {"command": "request_key04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key05", "status": "pass", "test": {"command": "request_key05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "request_key06", "status": "pass", "test": {"command": "request_key06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir01", "status": "pass", "test": {"command": "rmdir01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir02", "status": "pass", "test": {"command": "rmdir02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03", "status": "pass", "test": {"command": "rmdir03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rmdir03A", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "rmdir03"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction01", "status": "pass", "test": {"command": "rt_sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction02", "status": "pass", "test": {"command": "rt_sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigaction03", "status": "pass", "test": {"command": "rt_sigaction03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask01", "status": "pass", "test": {"command": "rt_sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigprocmask02", "status": "pass", "test": {"command": "rt_sigprocmask02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo01", "status": "pass", "test": {"command": "rt_sigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigqueueinfo02", "status": "pass", "test": {"command": "rt_sigqueueinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigsuspend01", "status": "pass", "test": {"command": "rt_sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_sigtimedwait01", "status": "pass", "test": {"command": "rt_sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "rt_tgsigqueueinfo01", "status": "pass", "test": {"command": "rt_tgsigqueueinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk01", "status": "pass", "test": {"command": "sbrk01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk02", "status": "pass", "test": {"command": "sbrk02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sbrk03", "status": "pass", "test": {"command": "sbrk03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max01", "status": "pass", "test": {"command": "sched_get_priority_max01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_max02", "status": "pass", "test": {"command": "sched_get_priority_max02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min01", "status": "pass", "test": {"command": "sched_get_priority_min01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_get_priority_min02", "status": "pass", "test": {"command": "sched_get_priority_min02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam01", "status": "pass", "test": {"command": "sched_getparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getparam03", "status": "pass", "test": {"command": "sched_getparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval01", "status": "pass", "test": {"command": "sched_rr_get_interval01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval02", "status": "pass", "test": {"command": "sched_rr_get_interval02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_rr_get_interval03", "status": "pass", "test": {"command": "sched_rr_get_interval03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam01", "status": "pass", "test": {"command": "sched_setparam01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam02", "status": "pass", "test": {"command": "sched_setparam02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam03", "status": "pass", "test": {"command": "sched_setparam03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam04", "status": "pass", "test": {"command": "sched_setparam04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setparam05", "status": "pass", "test": {"command": "sched_setparam05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler01", "status": "pass", "test": {"command": "sched_getscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getscheduler02", "status": "pass", "test": {"command": "sched_getscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler01", "status": "pass", "test": {"command": "sched_setscheduler01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler02", "status": "pass", "test": {"command": "sched_setscheduler02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler03", "status": "pass", "test": {"command": "sched_setscheduler03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setscheduler04", "status": "pass", "test": {"command": "sched_setscheduler04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_yield01", "status": "pass", "test": {"command": "sched_yield01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setaffinity01", "status": "pass", "test": {"command": "sched_setaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getaffinity01", "status": "pass", "test": {"command": "sched_getaffinity01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_setattr01", "status": "pass", "test": {"command": "sched_setattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr01", "status": "pass", "test": {"command": "sched_getattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sched_getattr02", "status": "pass", "test": {"command": "sched_getattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "seccomp01", "status": "pass", "test": {"command": "seccomp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select01", "status": "pass", "test": {"command": "select01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select02", "status": "pass", "test": {"command": "select02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select03", "status": "pass", "test": {"command": "select03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "select04", "status": "pass", "test": {"command": "select04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl01", "status": "pass", "test": {"command": "semctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl02", "status": "pass", "test": {"command": "semctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl03", "status": "pass", "test": {"command": "semctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl04", "status": "pass", "test": {"command": "semctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl05", "status": "pass", "test": {"command": "semctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl06", "status": "pass", "test": {"command": "semctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl07", "status": "pass", "test": {"command": "semctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl08", "status": "pass", "test": {"command": "semctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semctl09", "status": "pass", "test": {"command": "semctl09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget01", "status": "pass", "test": {"command": "semget01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget02", "status": "pass", "test": {"command": "semget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semget05", "status": "pass", "test": {"command": "semget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop01", "status": "pass", "test": {"command": "semop01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop02", "status": "pass", "test": {"command": "semop02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop03", "status": "pass", "test": {"command": "semop03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop04", "status": "pass", "test": {"command": "semop04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "semop05", "status": "pass", "test": {"command": "semop05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send01", "status": "pass", "test": {"command": "send01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "send02", "status": "pass", "test": {"command": "send02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02", "status": "pass", "test": {"command": "sendfile02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile02_64", "status": "pass", "test": {"command": "sendfile02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03", "status": "pass", "test": {"command": "sendfile03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile03_64", "status": "pass", "test": {"command": "sendfile03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04", "status": "pass", "test": {"command": "sendfile04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile04_64", "status": "pass", "test": {"command": "sendfile04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05", "status": "pass", "test": {"command": "sendfile05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile05_64", "status": "pass", "test": {"command": "sendfile05_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06", "status": "pass", "test": {"command": "sendfile06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile06_64", "status": "pass", "test": {"command": "sendfile06_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07", "status": "pass", "test": {"command": "sendfile07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile07_64", "status": "pass", "test": {"command": "sendfile07_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08", "status": "pass", "test": {"command": "sendfile08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile08_64", "status": "pass", "test": {"command": "sendfile08_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09", "status": "pass", "test": {"command": "sendfile09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendfile09_64", "status": "pass", "test": {"command": "sendfile09_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg01", "status": "pass", "test": {"command": "sendmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg02", "status": "pass", "test": {"command": "sendmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmsg03", "status": "pass", "test": {"command": "sendmsg03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg01", "status": "pass", "test": {"command": "sendmmsg01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendmmsg02", "status": "pass", "test": {"command": "sendmmsg02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto01", "status": "pass", "test": {"command": "sendto01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto02", "status": "pass", "test": {"command": "sendto02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sendto03", "status": "pass", "test": {"command": "sendto03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy01", "status": "pass", "test": {"command": "set_mempolicy01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy02", "status": "pass", "test": {"command": "set_mempolicy02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy03", "status": "pass", "test": {"command": "set_mempolicy03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_mempolicy04", "status": "pass", "test": {"command": "set_mempolicy04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_robust_list01", "status": "pass", "test": {"command": "set_robust_list01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_thread_area01", "status": "pass", "test": {"command": "set_thread_area01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "set_tid_address01", "status": "pass", "test": {"command": "set_tid_address01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname01", "status": "pass", "test": {"command": "setdomainname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname02", "status": "pass", "test": {"command": "setdomainname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setdomainname03", "status": "pass", "test": {"command": "setdomainname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01", "status": "pass", "test": {"command": "setfsgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid01_16", "status": "pass", "test": {"command": "setfsgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02", "status": "pass", "test": {"command": "setfsgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid02_16", "status": "pass", "test": {"command": "setfsgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03", "status": "pass", "test": {"command": "setfsgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsgid03_16", "status": "pass", "test": {"command": "setfsgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01", "status": "pass", "test": {"command": "setfsuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid01_16", "status": "pass", "test": {"command": "setfsuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02", "status": "pass", "test": {"command": "setfsuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid02_16", "status": "pass", "test": {"command": "setfsuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03", "status": "pass", "test": {"command": "setfsuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid03_16", "status": "pass", "test": {"command": "setfsuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04", "status": "pass", "test": {"command": "setfsuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setfsuid04_16", "status": "pass", "test": {"command": "setfsuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01", "status": "pass", "test": {"command": "setgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid01_16", "status": "pass", "test": {"command": "setgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02", "status": "pass", "test": {"command": "setgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid02_16", "status": "pass", "test": {"command": "setgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03", "status": "pass", "test": {"command": "setgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgid03_16", "status": "pass", "test": {"command": "setgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid01", "status": "pass", "test": {"command": "setegid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setegid02", "status": "pass", "test": {"command": "setegid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sgetmask01", "status": "pass", "test": {"command": "sgetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01", "status": "pass", "test": {"command": "setgroups01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups01_16", "status": "pass", "test": {"command": "setgroups01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02", "status": "pass", "test": {"command": "setgroups02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups02_16", "status": "pass", "test": {"command": "setgroups02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03", "status": "pass", "test": {"command": "setgroups03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setgroups03_16", "status": "pass", "test": {"command": "setgroups03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname01", "status": "pass", "test": {"command": "sethostname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname02", "status": "pass", "test": {"command": "sethostname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sethostname03", "status": "pass", "test": {"command": "sethostname03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer01", "status": "pass", "test": {"command": "setitimer01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setitimer02", "status": "pass", "test": {"command": "setitimer02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns01", "status": "pass", "test": {"command": "setns01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setns02", "status": "pass", "test": {"command": "setns02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid01", "status": "pass", "test": {"command": "setpgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid02", "status": "pass", "test": {"command": "setpgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgid03", "status": "pass", "test": {"command": "setpgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp01", "status": "pass", "test": {"command": "setpgrp01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpgrp02", "status": "pass", "test": {"command": "setpgrp02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority01", "status": "pass", "test": {"command": "setpriority01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setpriority02", "status": "pass", "test": {"command": "setpriority02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01", "status": "pass", "test": {"command": "setregid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid01_16", "status": "pass", "test": {"command": "setregid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02", "status": "pass", "test": {"command": "setregid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid02_16", "status": "pass", "test": {"command": "setregid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03", "status": "pass", "test": {"command": "setregid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid03_16", "status": "pass", "test": {"command": "setregid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04", "status": "pass", "test": {"command": "setregid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setregid04_16", "status": "pass", "test": {"command": "setregid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01", "status": "pass", "test": {"command": "setresgid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid01_16", "status": "pass", "test": {"command": "setresgid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02", "status": "pass", "test": {"command": "setresgid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid02_16", "status": "pass", "test": {"command": "setresgid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03", "status": "pass", "test": {"command": "setresgid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid03_16", "status": "pass", "test": {"command": "setresgid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04", "status": "pass", "test": {"command": "setresgid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresgid04_16", "status": "pass", "test": {"command": "setresgid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01", "status": "pass", "test": {"command": "setresuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid01_16", "status": "pass", "test": {"command": "setresuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02", "status": "pass", "test": {"command": "setresuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid02_16", "status": "pass", "test": {"command": "setresuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03", "status": "pass", "test": {"command": "setresuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid03_16", "status": "pass", "test": {"command": "setresuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04", "status": "pass", "test": {"command": "setresuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid04_16", "status": "pass", "test": {"command": "setresuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05", "status": "pass", "test": {"command": "setresuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setresuid05_16", "status": "pass", "test": {"command": "setresuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01", "status": "pass", "test": {"command": "setreuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid01_16", "status": "pass", "test": {"command": "setreuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02", "status": "pass", "test": {"command": "setreuid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid02_16", "status": "pass", "test": {"command": "setreuid02_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03", "status": "pass", "test": {"command": "setreuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid03_16", "status": "pass", "test": {"command": "setreuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04", "status": "pass", "test": {"command": "setreuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid04_16", "status": "pass", "test": {"command": "setreuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05", "status": "pass", "test": {"command": "setreuid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid05_16", "status": "pass", "test": {"command": "setreuid05_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06", "status": "pass", "test": {"command": "setreuid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid06_16", "status": "pass", "test": {"command": "setreuid06_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07", "status": "pass", "test": {"command": "setreuid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setreuid07_16", "status": "pass", "test": {"command": "setreuid07_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit01", "status": "pass", "test": {"command": "setrlimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit02", "status": "pass", "test": {"command": "setrlimit02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit03", "status": "pass", "test": {"command": "setrlimit03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit04", "status": "pass", "test": {"command": "setrlimit04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit05", "status": "pass", "test": {"command": "setrlimit05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setrlimit06", "status": "pass", "test": {"command": "setrlimit06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsid01", "status": "pass", "test": {"command": "setsid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt01", "status": "pass", "test": {"command": "setsockopt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt02", "status": "pass", "test": {"command": "setsockopt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt03", "status": "pass", "test": {"command": "setsockopt03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt04", "status": "pass", "test": {"command": "setsockopt04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt05", "status": "pass", "test": {"command": "setsockopt05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt06", "status": "pass", "test": {"command": "setsockopt06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt07", "status": "pass", "test": {"command": "setsockopt07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt08", "status": "pass", "test": {"command": "setsockopt08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt09", "status": "pass", "test": {"command": "setsockopt09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setsockopt10", "status": "pass", "test": {"command": "setsockopt10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday01", "status": "pass", "test": {"command": "settimeofday01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "settimeofday02", "status": "pass", "test": {"command": "settimeofday02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01", "status": "pass", "test": {"command": "setuid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid01_16", "status": "pass", "test": {"command": "setuid01_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03", "status": "pass", "test": {"command": "setuid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid03_16", "status": "pass", "test": {"command": "setuid03_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04", "status": "pass", "test": {"command": "setuid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setuid04_16", "status": "pass", "test": {"command": "setuid04_16", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr01", "status": "pass", "test": {"command": "setxattr01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr02", "status": "pass", "test": {"command": "setxattr02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "setxattr03", "status": "pass", "test": {"command": "setxattr03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat01", "status": "pass", "test": {"command": "shmat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat02", "status": "pass", "test": {"command": "shmat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat03", "status": "pass", "test": {"command": "shmat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmat04", "status": "pass", "test": {"command": "shmat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl01", "status": "pass", "test": {"command": "shmctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl02", "status": "pass", "test": {"command": "shmctl02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl03", "status": "pass", "test": {"command": "shmctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl04", "status": "pass", "test": {"command": "shmctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl05", "status": "pass", "test": {"command": "shmctl05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl06", "status": "pass", "test": {"command": "shmctl06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl07", "status": "pass", "test": {"command": "shmctl07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmctl08", "status": "pass", "test": {"command": "shmctl08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt01", "status": "pass", "test": {"command": "shmdt01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmdt02", "status": "pass", "test": {"command": "shmdt02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget02", "status": "pass", "test": {"command": "shmget02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget03", "status": "pass", "test": {"command": "shmget03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget04", "status": "pass", "test": {"command": "shmget04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget05", "status": "pass", "test": {"command": "shmget05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shmget06", "status": "pass", "test": {"command": "shmget06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown01", "status": "pass", "test": {"command": "shutdown01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "shutdown02", "status": "pass", "test": {"command": "shutdown02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction01", "status": "pass", "test": {"command": "sigaction01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaction02", "status": "pass", "test": {"command": "sigaction02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack01", "status": "pass", "test": {"command": "sigaltstack01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigaltstack02", "status": "pass", "test": {"command": "sigaltstack02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sighold02", "status": "pass", "test": {"command": "sighold02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal01", "status": "pass", "test": {"command": "signal01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal02", "status": "pass", "test": {"command": "signal02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal03", "status": "pass", "test": {"command": "signal03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal04", "status": "pass", "test": {"command": "signal04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal05", "status": "pass", "test": {"command": "signal05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signal06", "status": "pass", "test": {"command": "signal06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd01", "status": "pass", "test": {"command": "signalfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd02", "status": "pass", "test": {"command": "signalfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_01", "status": "pass", "test": {"command": "signalfd4_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "signalfd4_02", "status": "pass", "test": {"command": "signalfd4_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigpending02", "status": "pass", "test": {"command": "sigpending02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigprocmask01", "status": "pass", "test": {"command": "sigprocmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigrelse01", "status": "pass", "test": {"command": "sigrelse01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend01", "status": "pass", "test": {"command": "sigsuspend01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigsuspend02", "status": "pass", "test": {"command": "sigsuspend02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigtimedwait01", "status": "pass", "test": {"command": "sigtimedwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwait01", "status": "pass", "test": {"command": "sigwait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sigwaitinfo01", "status": "pass", "test": {"command": "sigwaitinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket01", "status": "pass", "test": {"command": "socket01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socket02", "status": "pass", "test": {"command": "socket02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall01", "status": "pass", "test": {"command": "socketcall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall02", "status": "pass", "test": {"command": "socketcall02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketcall03", "status": "pass", "test": {"command": "socketcall03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair01", "status": "pass", "test": {"command": "socketpair01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "socketpair02", "status": "pass", "test": {"command": "socketpair02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sockioctl01", "status": "pass", "test": {"command": "sockioctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice01", "status": "pass", "test": {"command": "splice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice02", "status": "pass", "test": {"command": "splice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice03", "status": "pass", "test": {"command": "splice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice04", "status": "pass", "test": {"command": "splice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice05", "status": "pass", "test": {"command": "splice05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice06", "status": "pass", "test": {"command": "splice06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice07", "status": "pass", "test": {"command": "splice07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice08", "status": "pass", "test": {"command": "splice08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "splice09", "status": "pass", "test": {"command": "splice09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee01", "status": "pass", "test": {"command": "tee01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tee02", "status": "pass", "test": {"command": "tee02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ssetmask01", "status": "pass", "test": {"command": "ssetmask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01", "status": "pass", "test": {"command": "stat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat01_64", "status": "pass", "test": {"command": "stat01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02", "status": "pass", "test": {"command": "stat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat02_64", "status": "pass", "test": {"command": "stat02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03", "status": "pass", "test": {"command": "stat03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat03_64", "status": "pass", "test": {"command": "stat03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04", "status": "pass", "test": {"command": "stat04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stat04_64", "status": "pass", "test": {"command": "stat04_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount01", "status": "pass", "test": {"command": "statmount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount02", "status": "pass", "test": {"command": "statmount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount03", "status": "pass", "test": {"command": "statmount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount04", "status": "pass", "test": {"command": "statmount04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount05", "status": "pass", "test": {"command": "statmount05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount06", "status": "pass", "test": {"command": "statmount06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount07", "status": "pass", "test": {"command": "statmount07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statmount08", "status": "pass", "test": {"command": "statmount08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01", "status": "pass", "test": {"command": "statfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs01_64", "status": "pass", "test": {"command": "statfs01_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02", "status": "pass", "test": {"command": "statfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs02_64", "status": "pass", "test": {"command": "statfs02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03", "status": "pass", "test": {"command": "statfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statfs03_64", "status": "pass", "test": {"command": "statfs03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs01", "status": "pass", "test": {"command": "statvfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statvfs02", "status": "pass", "test": {"command": "statvfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime01", "status": "pass", "test": {"command": "stime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "stime02", "status": "pass", "test": {"command": "stime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "string01", "status": "pass", "test": {"command": "string01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff01", "status": "pass", "test": {"command": "swapoff01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapoff02", "status": "pass", "test": {"command": "swapoff02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon01", "status": "pass", "test": {"command": "swapon01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon02", "status": "pass", "test": {"command": "swapon02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "swapon03", "status": "pass", "test": {"command": "swapon03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "switch01", "status": "pass", "test": {"command": "endian_switch01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink01", "status": "pass", "test": {"command": "symlink01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink02", "status": "pass", "test": {"command": "symlink02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink03", "status": "pass", "test": {"command": "symlink03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlink04", "status": "pass", "test": {"command": "symlink04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "symlinkat01", "status": "pass", "test": {"command": "symlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync01", "status": "pass", "test": {"command": "sync01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syncfs01", "status": "pass", "test": {"command": "syncfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range01", "status": "pass", "test": {"command": "sync_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sync_file_range02", "status": "pass", "test": {"command": "sync_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syscall01", "status": "pass", "test": {"command": "syscall01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysconf01", "status": "pass", "test": {"command": "sysconf01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl01", "status": "pass", "test": {"command": "sysctl01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl03", "status": "pass", "test": {"command": "sysctl03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysctl04", "status": "pass", "test": {"command": "sysctl04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs01", "status": "pass", "test": {"command": "sysfs01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs02", "status": "pass", "test": {"command": "sysfs02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs03", "status": "pass", "test": {"command": "sysfs03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs04", "status": "pass", "test": {"command": "sysfs04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysfs05", "status": "pass", "test": {"command": "sysfs05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo01", "status": "pass", "test": {"command": "sysinfo01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo02", "status": "pass", "test": {"command": "sysinfo02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "sysinfo03", "status": "pass", "test": {"command": "sysinfo03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog11", "status": "pass", "test": {"command": "syslog11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "syslog12", "status": "pass", "test": {"command": "syslog12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill01", "status": "pass", "test": {"command": "tgkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill02", "status": "pass", "test": {"command": "tgkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tgkill03", "status": "pass", "test": {"command": "tgkill03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "time01", "status": "pass", "test": {"command": "time01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times01", "status": "pass", "test": {"command": "times01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "times03", "status": "pass", "test": {"command": "times03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd01", "status": "pass", "test": {"command": "timerfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd02", "status": "pass", "test": {"command": "timerfd02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd04", "status": "pass", "test": {"command": "timerfd04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_create01", "status": "pass", "test": {"command": "timerfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_gettime01", "status": "pass", "test": {"command": "timerfd_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime01", "status": "pass", "test": {"command": "timerfd_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timerfd_settime02", "status": "pass", "test": {"command": "timerfd_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create01", "status": "pass", "test": {"command": "timer_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create02", "status": "pass", "test": {"command": "timer_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_create03", "status": "pass", "test": {"command": "timer_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete01", "status": "pass", "test": {"command": "timer_delete01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_delete02", "status": "pass", "test": {"command": "timer_delete02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_getoverrun01", "status": "pass", "test": {"command": "timer_getoverrun01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_gettime01", "status": "pass", "test": {"command": "timer_gettime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime01", "status": "pass", "test": {"command": "timer_settime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime02", "status": "pass", "test": {"command": "timer_settime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "timer_settime03", "status": "pass", "test": {"command": "timer_settime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill01", "status": "pass", "test": {"command": "tkill01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "tkill02", "status": "pass", "test": {"command": "tkill02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02", "status": "pass", "test": {"command": "truncate02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate02_64", "status": "pass", "test": {"command": "truncate02_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03", "status": "pass", "test": {"command": "truncate03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "truncate03_64", "status": "pass", "test": {"command": "truncate03_64", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ulimit01", "status": "pass", "test": {"command": "ulimit01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umask01", "status": "pass", "test": {"command": "umask01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname01", "status": "pass", "test": {"command": "uname01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname02", "status": "pass", "test": {"command": "uname02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "uname04", "status": "pass", "test": {"command": "uname04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink01", "status": "pass", "test": {"command": "symlink01", "arguments": ["-T", "unlink01"], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink05", "status": "pass", "test": {"command": "unlink05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink07", "status": "pass", "test": {"command": "unlink07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink08", "status": "pass", "test": {"command": "unlink08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink09", "status": "pass", "test": {"command": "unlink09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlink10", "status": "pass", "test": {"command": "unlink10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unlinkat01", "status": "pass", "test": {"command": "unlinkat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare01", "status": "pass", "test": {"command": "unshare01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "unshare02", "status": "pass", "test": {"command": "unshare02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount01", "status": "pass", "test": {"command": "umount01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount02", "status": "pass", "test": {"command": "umount02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount03", "status": "pass", "test": {"command": "umount03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_01", "status": "pass", "test": {"command": "umount2_01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "umount2_02", "status": "pass", "test": {"command": "umount2_02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "userfaultfd01", "status": "pass", "test": {"command": "userfaultfd01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat01", "status": "pass", "test": {"command": "ustat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "ustat02", "status": "pass", "test": {"command": "ustat02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime01", "status": "pass", "test": {"command": "utime01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime02", "status": "pass", "test": {"command": "utime02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime03", "status": "pass", "test": {"command": "utime03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime04", "status": "pass", "test": {"command": "utime04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime05", "status": "pass", "test": {"command": "utime05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime06", "status": "pass", "test": {"command": "utime06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utime07", "status": "pass", "test": {"command": "utime07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimes01", "status": "pass", "test": {"command": "utimes01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "utimensat01", "status": "pass", "test": {"command": "utimensat01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork01", "status": "pass", "test": {"command": "vfork01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vfork02", "status": "pass", "test": {"command": "vfork02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup01", "status": "pass", "test": {"command": "vhangup01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vhangup02", "status": "pass", "test": {"command": "vhangup02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice01", "status": "pass", "test": {"command": "vmsplice01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice02", "status": "pass", "test": {"command": "vmsplice02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice03", "status": "pass", "test": {"command": "vmsplice03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "vmsplice04", "status": "pass", "test": {"command": "vmsplice04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait01", "status": "pass", "test": {"command": "wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait02", "status": "pass", "test": {"command": "wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait401", "status": "pass", "test": {"command": "wait401", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait402", "status": "pass", "test": {"command": "wait402", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "wait403", "status": "pass", "test": {"command": "wait403", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid01", "status": "pass", "test": {"command": "waitpid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid03", "status": "pass", "test": {"command": "waitpid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid04", "status": "pass", "test": {"command": "waitpid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid06", "status": "pass", "test": {"command": "waitpid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid07", "status": "pass", "test": {"command": "waitpid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid08", "status": "pass", "test": {"command": "waitpid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid09", "status": "pass", "test": {"command": "waitpid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid10", "status": "pass", "test": {"command": "waitpid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid11", "status": "pass", "test": {"command": "waitpid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid12", "status": "pass", "test": {"command": "waitpid12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitpid13", "status": "pass", "test": {"command": "waitpid13", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid01", "status": "pass", "test": {"command": "waitid01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid02", "status": "pass", "test": {"command": "waitid02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid03", "status": "pass", "test": {"command": "waitid03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid04", "status": "pass", "test": {"command": "waitid04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid05", "status": "pass", "test": {"command": "waitid05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid06", "status": "pass", "test": {"command": "waitid06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid07", "status": "pass", "test": {"command": "waitid07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid08", "status": "pass", "test": {"command": "waitid08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid09", "status": "pass", "test": {"command": "waitid09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid10", "status": "pass", "test": {"command": "waitid10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "waitid11", "status": "pass", "test": {"command": "waitid11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write01", "status": "pass", "test": {"command": "write01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write02", "status": "pass", "test": {"command": "write02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write03", "status": "pass", "test": {"command": "write03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write04", "status": "pass", "test": {"command": "write04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write05", "status": "pass", "test": {"command": "write05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "write06", "status": "pass", "test": {"command": "write06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev01", "status": "pass", "test": {"command": "writev01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev02", "status": "pass", "test": {"command": "writev02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev03", "status": "pass", "test": {"command": "writev03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev05", "status": "pass", "test": {"command": "writev05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev06", "status": "pass", "test": {"command": "writev06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "writev07", "status": "pass", "test": {"command": "writev07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open01", "status": "pass", "test": {"command": "perf_event_open01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open02", "status": "pass", "test": {"command": "perf_event_open02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue01", "status": "pass", "test": {"command": "futex_cmp_requeue01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_cmp_requeue02", "status": "pass", "test": {"command": "futex_cmp_requeue02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait01", "status": "pass", "test": {"command": "futex_wait01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait02", "status": "pass", "test": {"command": "futex_wait02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait03", "status": "pass", "test": {"command": "futex_wait03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait04", "status": "pass", "test": {"command": "futex_wait04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait05", "status": "pass", "test": {"command": "futex_wait05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv01", "status": "pass", "test": {"command": "futex_waitv01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv02", "status": "pass", "test": {"command": "futex_waitv02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_waitv03", "status": "pass", "test": {"command": "futex_waitv03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake01", "status": "pass", "test": {"command": "futex_wake01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake02", "status": "pass", "test": {"command": "futex_wake02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake03", "status": "pass", "test": {"command": "futex_wake03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wake04", "status": "pass", "test": {"command": "futex_wake04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "futex_wait_bitset01", "status": "pass", "test": {"command": "futex_wait_bitset01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create01", "status": "pass", "test": {"command": "memfd_create01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create02", "status": "pass", "test": {"command": "memfd_create02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create03", "status": "pass", "test": {"command": "memfd_create03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "memfd_create04", "status": "pass", "test": {"command": "memfd_create04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range01", "status": "pass", "test": {"command": "copy_file_range01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range02", "status": "pass", "test": {"command": "copy_file_range02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "copy_file_range03", "status": "pass", "test": {"command": "copy_file_range03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx01", "status": "pass", "test": {"command": "statx01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx02", "status": "pass", "test": {"command": "statx02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx03", "status": "pass", "test": {"command": "statx03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx04", "status": "pass", "test": {"command": "statx04", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx05", "status": "pass", "test": {"command": "statx05", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx06", "status": "pass", "test": {"command": "statx06", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx07", "status": "pass", "test": {"command": "statx07", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx08", "status": "pass", "test": {"command": "statx08", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx09", "status": "pass", "test": {"command": "statx09", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx10", "status": "pass", "test": {"command": "statx10", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx11", "status": "pass", "test": {"command": "statx11", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "statx12", "status": "pass", "test": {"command": "statx12", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "membarrier01", "status": "pass", "test": {"command": "membarrier01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring01", "status": "pass", "test": {"command": "io_uring01", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "io_uring02", "status": "pass", "test": {"command": "io_uring02", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}, {"test_fqn": "perf_event_open03", "status": "pass", "test": {"command": "perf_event_open03", "arguments": [], "log": "", "retval": ["32"], "duration": 0.0, "failed": 0, "passed": 0, "broken": 0, "skipped": 1, "warnings": 0, "result": "pass"}}], "stats": {"runtime": 15.059583902359009, "passed": 365, "failed": 0, "broken": 0, "skipped": 1433, "warnings": 0}, "environment": {"distribution": "poky", "distribution_version": "5.2.4", "kernel": "Linux 6.12.47-yocto-standard #1 SMP PREEMPT_DYNAMIC Mon Sep 15 02:39:40 UTC 2025", "arch": "x86_64", "cpu": "unknown", "swap": "0 kB", "RAM": "3053816 kB"}} 2026-04-19 21:00:59.037704 2026-04-19 21:02:04.053574 +279 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 21:02:04.498686 2026-04-19 21:02:04.498689 +280 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 20:56:33' --until '2026-04-19 21:02:04' 0 OOM records. 2026-04-19 20:56:33.711954 2026-04-19 21:02:04.065905 +281 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 20:56:33' --until '2026-04-19 21:02:04' 0 Systemd errors records 2026-04-19 20:56:33.711954 2026-04-19 21:02:04.065905 +282 6 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm 0 --vm-method all --vm-bytes 95% --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 36.03, "usr_time_secs": 0.19, "sys_time_secs": 1.39, "bogo_ops_s_real_time": 63.06, "bogo_ops_s_usr_sys_time": 1442.87, "cpu_used_per_instance": 1.09, "rss_max_kb": 4812, "top10_slowest": [["syslog", 823573790.0, 796411174, 850736406], ["execve", 23001172.5, 13919392, 32082953], ["execveat", 22414313.0, 14862040, 29966586], ["fdatasync", 3507971.5, 2890444, 4125499], ["sync", 3272675.5, 3201210, 3344141], ["pwritev2", 3247299.5, 2710905, 3783694], ["accept", 3123427.0, 783819, 5463035], ["fsync", 2492662.0, 2481872, 2503452], ["clone", 2226458.5, 1017210, 3435707], ["msync", 1889816.5, 19749, 3759884]]}, {"stressor": "vm", "bogo_ops": 20992, "real_time_secs": 33.25, "usr_time_secs": 13.15, "sys_time_secs": 54.48, "bogo_ops_s_real_time": 631.35, "bogo_ops_s_usr_sys_time": 310.38, "cpu_used_per_instance": 50.85, "rss_max_kb": 673392, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 8, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:02:06.637855 2026-04-19 19:16:23.943354 +283 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 21:02:44.792471 2026-04-19 21:02:44.792475 +284 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 21:02:06' --until '2026-04-19 21:02:44' 0 OOM records. 2026-04-19 21:02:06.443322 2026-04-19 21:02:44.495399 +285 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 21:02:06' --until '2026-04-19 21:02:44' 0 Systemd errors records 2026-04-19 21:02:06.443322 2026-04-19 21:02:44.495399 +298 7 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-19 21:13:39.089532 2026-04-19 21:13:39.089535 +299 7 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 21:10:25' --until '2026-04-19 21:13:36' 0 OOM records. 2026-04-19 21:10:25.771542 2026-04-19 21:13:36.676678 +300 7 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 21:10:25' --until '2026-04-19 21:13:36' 0 Systemd errors records 2026-04-19 21:10:25.771542 2026-04-19 21:13:36.676678 +301 7 loader /usr/bin/perf bench --format default --repeat 3 sched messaging [{"benchmark": "sched/messaging", "total_time": 3.696}] 2026-04-19 21:17:18.199279 2026-04-19 21:17:23.53279 +302 7 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread [{"benchmark": "sched/messaging", "total_time": 2.056}] 2026-04-19 21:17:23.536478 2026-04-19 21:17:26.359473 +286 6 loader /usr/bin/stress-ng --timeout 33 --cpu-method all --vm-method all --syscall 0 --syscall-method all --verify --metrics --syscall-top 0 & /usr/bin/perf bench --format default --repeat 1 syscall all {"stress_ng_metrics": [{"stressor": "syscall", "bogo_ops": 2272, "real_time_secs": 37.03, "usr_time_secs": 0.24, "sys_time_secs": 1.04, "bogo_ops_s_real_time": 61.36, "bogo_ops_s_usr_sys_time": 1774.06, "cpu_used_per_instance": 0.86, "rss_max_kb": 4940, "top10_slowest": [["syslog", 865636287.0, 861041987, 870230587], ["execve", 14040837.5, 13989343, 14092332], ["execveat", 12882183.5, 12698247, 13066120], ["sync", 3915307.0, 3713628, 4116986], ["fdatasync", 3744304.0, 3154144, 4334464], ["pwritev2", 2937992.0, 2646896, 3229088], ["fsync", 2554889.5, 2157722, 2952057], ["clock_settime", 1928703.0, 1928703, 1928703], ["msync", 1528392.5, 25315, 3031470], ["syncfs", 1320320.0, 1229734, 1410906]]}], "stress_ng_summary": {"skipped": -1, "passed": 4, "failed": -1, "metrics_untrustworthy": -1}, "perf_metrics": [{"benchmark": "syscall/basic", "total_time": 80.93, "usecs_per_op": 8.093096, "ops_per_sec": 123562}, {"benchmark": "syscall/getpgid", "total_time": 78.882, "usecs_per_op": 7.888202, "ops_per_sec": 126771}, {"benchmark": "syscall/fork", "total_time": 59.216, "usecs_per_op": 5921.6455, "ops_per_sec": 168}, {"benchmark": "syscall/execve", "total_time": 70.548, "usecs_per_op": 7054.883, "ops_per_sec": 141}]} 2026-04-19 21:02:46.198633 2026-04-19 21:07:36.250325 +287 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 21:07:36.510762 2026-04-19 21:07:36.510765 +288 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 21:02:45' --until '2026-04-19 21:07:36' 0 OOM records. 2026-04-19 21:02:45.996363 2026-04-19 21:07:36.255238 +289 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 21:02:45' --until '2026-04-19 21:07:36' 0 Systemd errors records 2026-04-19 21:02:45.996363 2026-04-19 21:07:36.255238 +290 6 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 1 --syscall-method all --mq 1 --pipe 1 --sem 1 --sem-sysv 1 --shm 1 --shm-sysv 1 --verify --dekker 1 --fifo 1 --futex 1 --msg 1 --peterson 1 --pipeherd 1 --sigq 1 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 35, "real_time_secs": 8.04, "usr_time_secs": 0.18, "sys_time_secs": 0.91, "bogo_ops_s_real_time": 4.35, "bogo_ops_s_usr_sys_time": 32.09, "cpu_used_per_instance": 13.56, "rss_max_kb": 2140, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 11041, "real_time_secs": 8.04, "usr_time_secs": 0.31, "sys_time_secs": 0.61, "bogo_ops_s_real_time": 1374.0, "bogo_ops_s_usr_sys_time": 11949.48, "cpu_used_per_instance": 11.5, "rss_max_kb": 2316, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 14567, "real_time_secs": 8.03, "usr_time_secs": 0.17, "sys_time_secs": 0.77, "bogo_ops_s_real_time": 1813.44, "bogo_ops_s_usr_sys_time": 15441.58, "cpu_used_per_instance": 11.74, "rss_max_kb": 2576, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 70410, "real_time_secs": 8.02, "usr_time_secs": 0.43, "sys_time_secs": 1.16, "bogo_ops_s_real_time": 8774.5, "bogo_ops_s_usr_sys_time": 44196.63, "cpu_used_per_instance": 19.85, "rss_max_kb": 3188, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 33897, "real_time_secs": 8.03, "usr_time_secs": 0.35, "sys_time_secs": 0.98, "bogo_ops_s_real_time": 4221.68, "bogo_ops_s_usr_sys_time": 25468.52, "cpu_used_per_instance": 16.58, "rss_max_kb": 2320, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 7, "real_time_secs": 8.07, "usr_time_secs": 0.08, "sys_time_secs": 0.79, "bogo_ops_s_real_time": 0.87, "bogo_ops_s_usr_sys_time": 8.04, "cpu_used_per_instance": 10.79, "rss_max_kb": 50160, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 12, "real_time_secs": 8.03, "usr_time_secs": 0.05, "sys_time_secs": 0.32, "bogo_ops_s_real_time": 1.49, "bogo_ops_s_usr_sys_time": 32.39, "cpu_used_per_instance": 4.61, "rss_max_kb": 18540, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 2497771, "real_time_secs": 8.03, "usr_time_secs": 1.47, "sys_time_secs": 0.04, "bogo_ops_s_real_time": 311065.12, "bogo_ops_s_usr_sys_time": 1659458.85, "cpu_used_per_instance": 18.74, "rss_max_kb": 2184, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 34851, "real_time_secs": 8.03, "usr_time_secs": 0.58, "sys_time_secs": 1.39, "bogo_ops_s_real_time": 4340.84, "bogo_ops_s_usr_sys_time": 17636.28, "cpu_used_per_instance": 24.61, "rss_max_kb": 2176, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 705, "real_time_secs": 8.02, "usr_time_secs": 0.29, "sys_time_secs": 0.74, "bogo_ops_s_real_time": 87.86, "bogo_ops_s_usr_sys_time": 681.12, "cpu_used_per_instance": 12.9, "rss_max_kb": 2184, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 35810, "real_time_secs": 8.04, "usr_time_secs": 0.44, "sys_time_secs": 0.83, "bogo_ops_s_real_time": 4454.53, "bogo_ops_s_usr_sys_time": 28121.28, "cpu_used_per_instance": 15.84, "rss_max_kb": 2196, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 949870, "real_time_secs": 8.01, "usr_time_secs": 1.41, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 118581.33, "bogo_ops_s_usr_sys_time": 658368.7, "cpu_used_per_instance": 18.01, "rss_max_kb": 2196, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 181239, "real_time_secs": 8.08, "usr_time_secs": 2.15, "sys_time_secs": 14.51, "bogo_ops_s_real_time": 22422.82, "bogo_ops_s_usr_sys_time": 10877.97, "cpu_used_per_instance": 206.13, "rss_max_kb": 2196, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 9543, "real_time_secs": 8.01, "usr_time_secs": 0.3, "sys_time_secs": 0.5, "bogo_ops_s_real_time": 1191.56, "bogo_ops_s_usr_sys_time": 11993.03, "cpu_used_per_instance": 9.94, "rss_max_kb": 2188, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 14, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:07:37.945092 2026-04-19 19:16:23.943354 +291 6 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 2 --syscall-method all --mq 2 --pipe 2 --sem 2 --sem-sysv 2 --shm 2 --shm-sysv 2 --verify --dekker 2 --fifo 2 --futex 2 --msg 2 --peterson 2 --pipeherd 2 --sigq 2 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 44, "real_time_secs": 8.18, "usr_time_secs": 0.23, "sys_time_secs": 1.14, "bogo_ops_s_real_time": 5.38, "bogo_ops_s_usr_sys_time": 32.08, "cpu_used_per_instance": 8.38, "rss_max_kb": 2164, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 12118, "real_time_secs": 8.06, "usr_time_secs": 0.34, "sys_time_secs": 0.69, "bogo_ops_s_real_time": 1503.39, "bogo_ops_s_usr_sys_time": 11772.81, "cpu_used_per_instance": 6.38, "rss_max_kb": 2344, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 19381, "real_time_secs": 8.08, "usr_time_secs": 0.23, "sys_time_secs": 1.03, "bogo_ops_s_real_time": 2399.95, "bogo_ops_s_usr_sys_time": 15414.88, "cpu_used_per_instance": 7.78, "rss_max_kb": 2272, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 58578, "real_time_secs": 8.01, "usr_time_secs": 0.38, "sys_time_secs": 1.03, "bogo_ops_s_real_time": 7315.11, "bogo_ops_s_usr_sys_time": 41643.0, "cpu_used_per_instance": 8.78, "rss_max_kb": 3064, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 12445, "real_time_secs": 8.04, "usr_time_secs": 0.14, "sys_time_secs": 0.49, "bogo_ops_s_real_time": 1548.15, "bogo_ops_s_usr_sys_time": 19846.59, "cpu_used_per_instance": 3.9, "rss_max_kb": 2204, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 14, "real_time_secs": 8.17, "usr_time_secs": 0.06, "sys_time_secs": 0.73, "bogo_ops_s_real_time": 1.71, "bogo_ops_s_usr_sys_time": 17.68, "cpu_used_per_instance": 4.85, "rss_max_kb": 2204, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 12, "real_time_secs": 8.17, "usr_time_secs": 0.06, "sys_time_secs": 0.55, "bogo_ops_s_real_time": 1.47, "bogo_ops_s_usr_sys_time": 19.75, "cpu_used_per_instance": 3.72, "rss_max_kb": 26480, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 2476423, "real_time_secs": 8.06, "usr_time_secs": 1.62, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 307432.03, "bogo_ops_s_usr_sys_time": 1498109.53, "cpu_used_per_instance": 10.26, "rss_max_kb": 2152, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 40036, "real_time_secs": 8.07, "usr_time_secs": 0.77, "sys_time_secs": 1.48, "bogo_ops_s_real_time": 4958.13, "bogo_ops_s_usr_sys_time": 17795.43, "cpu_used_per_instance": 13.93, "rss_max_kb": 2016, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 700, "real_time_secs": 8.03, "usr_time_secs": 0.29, "sys_time_secs": 0.9, "bogo_ops_s_real_time": 87.2, "bogo_ops_s_usr_sys_time": 590.26, "cpu_used_per_instance": 7.39, "rss_max_kb": 2016, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 43909, "real_time_secs": 8.06, "usr_time_secs": 0.5, "sys_time_secs": 1.01, "bogo_ops_s_real_time": 5448.18, "bogo_ops_s_usr_sys_time": 29039.48, "cpu_used_per_instance": 9.38, "rss_max_kb": 2144, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 1610643, "real_time_secs": 8.02, "usr_time_secs": 1.5, "sys_time_secs": 0.02, "bogo_ops_s_real_time": 200866.31, "bogo_ops_s_usr_sys_time": 1055434.04, "cpu_used_per_instance": 9.52, "rss_max_kb": 2016, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 211137, "real_time_secs": 8.13, "usr_time_secs": 2.48, "sys_time_secs": 13.31, "bogo_ops_s_real_time": 25969.52, "bogo_ops_s_usr_sys_time": 13370.34, "cpu_used_per_instance": 97.12, "rss_max_kb": 2016, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 10224, "real_time_secs": 8.0, "usr_time_secs": 0.32, "sys_time_secs": 0.54, "bogo_ops_s_real_time": 1277.38, "bogo_ops_s_usr_sys_time": 11850.44, "cpu_used_per_instance": 5.39, "rss_max_kb": 2016, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 28, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:07:46.386597 2026-04-19 19:16:23.943354 +292 6 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 3 --syscall-method all --mq 3 --pipe 3 --sem 3 --sem-sysv 3 --shm 3 --shm-sysv 3 --verify --dekker 3 --fifo 3 --futex 3 --msg 3 --peterson 3 --pipeherd 3 --sigq 3 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 50, "real_time_secs": 8.21, "usr_time_secs": 0.26, "sys_time_secs": 1.3, "bogo_ops_s_real_time": 6.09, "bogo_ops_s_usr_sys_time": 32.17, "cpu_used_per_instance": 6.31, "rss_max_kb": 2120, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 12961, "real_time_secs": 8.03, "usr_time_secs": 0.44, "sys_time_secs": 0.65, "bogo_ops_s_real_time": 1614.7, "bogo_ops_s_usr_sys_time": 11863.35, "cpu_used_per_instance": 4.54, "rss_max_kb": 2260, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 18900, "real_time_secs": 8.04, "usr_time_secs": 0.24, "sys_time_secs": 1.02, "bogo_ops_s_real_time": 2350.8, "bogo_ops_s_usr_sys_time": 14977.26, "cpu_used_per_instance": 5.23, "rss_max_kb": 2508, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 46248, "real_time_secs": 8.08, "usr_time_secs": 0.33, "sys_time_secs": 1.15, "bogo_ops_s_real_time": 5724.38, "bogo_ops_s_usr_sys_time": 31216.97, "cpu_used_per_instance": 6.11, "rss_max_kb": 3000, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 5597, "real_time_secs": 8.07, "usr_time_secs": 0.09, "sys_time_secs": 0.32, "bogo_ops_s_real_time": 693.88, "bogo_ops_s_usr_sys_time": 13596.17, "cpu_used_per_instance": 1.7, "rss_max_kb": 2316, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 24, "real_time_secs": 8.19, "usr_time_secs": 0.19, "sys_time_secs": 0.8, "bogo_ops_s_real_time": 2.93, "bogo_ops_s_usr_sys_time": 24.32, "cpu_used_per_instance": 4.02, "rss_max_kb": 5156, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 10, "real_time_secs": 8.23, "usr_time_secs": 0.06, "sys_time_secs": 0.39, "bogo_ops_s_real_time": 1.22, "bogo_ops_s_usr_sys_time": 22.16, "cpu_used_per_instance": 1.83, "rss_max_kb": 18124, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 2927867, "real_time_secs": 8.06, "usr_time_secs": 1.74, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 363221.38, "bogo_ops_s_usr_sys_time": 1655254.43, "cpu_used_per_instance": 7.31, "rss_max_kb": 2132, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 43150, "real_time_secs": 8.09, "usr_time_secs": 0.82, "sys_time_secs": 1.63, "bogo_ops_s_real_time": 5334.47, "bogo_ops_s_usr_sys_time": 17626.62, "cpu_used_per_instance": 10.09, "rss_max_kb": 2144, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 909, "real_time_secs": 8.07, "usr_time_secs": 0.41, "sys_time_secs": 1.05, "bogo_ops_s_real_time": 112.57, "bogo_ops_s_usr_sys_time": 626.48, "cpu_used_per_instance": 5.99, "rss_max_kb": 2100, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 49073, "real_time_secs": 8.11, "usr_time_secs": 0.58, "sys_time_secs": 1.13, "bogo_ops_s_real_time": 6049.35, "bogo_ops_s_usr_sys_time": 28627.95, "cpu_used_per_instance": 7.04, "rss_max_kb": 2132, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 2648957, "real_time_secs": 8.05, "usr_time_secs": 1.89, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 328912.95, "bogo_ops_s_usr_sys_time": 1381744.2, "cpu_used_per_instance": 7.93, "rss_max_kb": 2268, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 211497, "real_time_secs": 8.16, "usr_time_secs": 2.66, "sys_time_secs": 12.27, "bogo_ops_s_real_time": 25923.48, "bogo_ops_s_usr_sys_time": 14166.07, "cpu_used_per_instance": 61.0, "rss_max_kb": 2120, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 11863, "real_time_secs": 8.01, "usr_time_secs": 0.37, "sys_time_secs": 0.61, "bogo_ops_s_real_time": 1481.24, "bogo_ops_s_usr_sys_time": 12080.99, "cpu_used_per_instance": 4.09, "rss_max_kb": 2128, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 42, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:07:54.813344 2026-04-19 19:16:23.943354 +293 6 loader /usr/bin/stress-ng --timeout 8 --cpu-method all --vm-method all --sock 4 --syscall-method all --mq 4 --pipe 4 --sem 4 --sem-sysv 4 --shm 4 --shm-sysv 4 --verify --dekker 4 --fifo 4 --futex 4 --msg 4 --peterson 4 --pipeherd 4 --sigq 4 --metrics {"stress_ng_metrics": [{"stressor": "sock", "bogo_ops": 54, "real_time_secs": 8.28, "usr_time_secs": 0.28, "sys_time_secs": 1.41, "bogo_ops_s_real_time": 6.52, "bogo_ops_s_usr_sys_time": 31.79, "cpu_used_per_instance": 5.13, "rss_max_kb": 2084, "top10_slowest": null}, {"stressor": "mq", "bogo_ops": 15250, "real_time_secs": 8.06, "usr_time_secs": 0.47, "sys_time_secs": 0.85, "bogo_ops_s_real_time": 1891.86, "bogo_ops_s_usr_sys_time": 11529.2, "cpu_used_per_instance": 4.1, "rss_max_kb": 2392, "top10_slowest": null}, {"stressor": "pipe", "bogo_ops": 21746, "real_time_secs": 8.08, "usr_time_secs": 0.28, "sys_time_secs": 1.17, "bogo_ops_s_real_time": 2692.32, "bogo_ops_s_usr_sys_time": 15005.52, "cpu_used_per_instance": 4.49, "rss_max_kb": 2368, "top10_slowest": null}, {"stressor": "sem", "bogo_ops": 47635, "real_time_secs": 8.02, "usr_time_secs": 0.35, "sys_time_secs": 1.25, "bogo_ops_s_real_time": 5938.85, "bogo_ops_s_usr_sys_time": 29723.83, "cpu_used_per_instance": 5.0, "rss_max_kb": 3048, "top10_slowest": null}, {"stressor": "sem-sysv", "bogo_ops": 6808, "real_time_secs": 8.04, "usr_time_secs": 0.09, "sys_time_secs": 0.38, "bogo_ops_s_real_time": 846.32, "bogo_ops_s_usr_sys_time": 14507.89, "cpu_used_per_instance": 1.46, "rss_max_kb": 2136, "top10_slowest": null}, {"stressor": "shm", "bogo_ops": 28, "real_time_secs": 8.25, "usr_time_secs": 0.16, "sys_time_secs": 0.75, "bogo_ops_s_real_time": 3.39, "bogo_ops_s_usr_sys_time": 30.63, "cpu_used_per_instance": 2.77, "rss_max_kb": 3008, "top10_slowest": null}, {"stressor": "shm-sysv", "bogo_ops": 9, "real_time_secs": 8.42, "usr_time_secs": 0.06, "sys_time_secs": 0.5, "bogo_ops_s_real_time": 1.07, "bogo_ops_s_usr_sys_time": 16.12, "cpu_used_per_instance": 1.66, "rss_max_kb": 18152, "top10_slowest": null}, {"stressor": "dekker", "bogo_ops": 3575500, "real_time_secs": 8.14, "usr_time_secs": 2.0, "sys_time_secs": 0.03, "bogo_ops_s_real_time": 439026.29, "bogo_ops_s_usr_sys_time": 1757801.46, "cpu_used_per_instance": 6.24, "rss_max_kb": 2004, "top10_slowest": null}, {"stressor": "fifo", "bogo_ops": 42935, "real_time_secs": 8.11, "usr_time_secs": 0.8, "sys_time_secs": 1.65, "bogo_ops_s_real_time": 5293.77, "bogo_ops_s_usr_sys_time": 17459.75, "cpu_used_per_instance": 7.58, "rss_max_kb": 2144, "top10_slowest": null}, {"stressor": "futex", "bogo_ops": 673, "real_time_secs": 8.04, "usr_time_secs": 0.48, "sys_time_secs": 1.16, "bogo_ops_s_real_time": 83.68, "bogo_ops_s_usr_sys_time": 410.35, "cpu_used_per_instance": 5.1, "rss_max_kb": 1992, "top10_slowest": null}, {"stressor": "msg", "bogo_ops": 55024, "real_time_secs": 8.17, "usr_time_secs": 0.59, "sys_time_secs": 1.31, "bogo_ops_s_real_time": 6738.36, "bogo_ops_s_usr_sys_time": 28956.62, "cpu_used_per_instance": 5.82, "rss_max_kb": 2136, "top10_slowest": null}, {"stressor": "peterson", "bogo_ops": 1260279, "real_time_secs": 8.05, "usr_time_secs": 1.92, "sys_time_secs": 0.04, "bogo_ops_s_real_time": 156574.52, "bogo_ops_s_usr_sys_time": 643863.45, "cpu_used_per_instance": 6.08, "rss_max_kb": 2008, "top10_slowest": null}, {"stressor": "pipeherd", "bogo_ops": 206694, "real_time_secs": 8.21, "usr_time_secs": 2.58, "sys_time_secs": 11.93, "bogo_ops_s_real_time": 25166.79, "bogo_ops_s_usr_sys_time": 14241.38, "cpu_used_per_instance": 44.18, "rss_max_kb": 2008, "top10_slowest": null}, {"stressor": "sigq", "bogo_ops": 14092, "real_time_secs": 8.0, "usr_time_secs": 0.43, "sys_time_secs": 0.74, "bogo_ops_s_real_time": 1760.62, "bogo_ops_s_usr_sys_time": 11953.34, "cpu_used_per_instance": 3.68, "rss_max_kb": 2004, "top10_slowest": null}], "stress_ng_summary": {"skipped": -1, "passed": 56, "failed": -1, "metrics_untrustworthy": -1}} 2026-04-19 21:08:03.32458 2026-04-19 19:16:23.943354 +294 6 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-19 21:08:12.341241 2026-04-19 21:08:12.341245 +295 6 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-19 21:07:37' --until '2026-04-19 21:08:12' 1 OOM records. 2026-04-19 21:07:37.677343 2026-04-19 21:08:12.080866 +296 6 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-19 21:07:37' --until '2026-04-19 21:08:12' 0 Systemd errors records 2026-04-19 21:07:37.677343 2026-04-19 21:08:12.080866 +352 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 14:51:55' --until '2026-04-20 15:04:25' 0 OOM records. 2026-04-20 14:51:55.855184 2026-04-20 15:04:25.925435 +316 8 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776696937, "timestamp_ms": 1776696937294, "time": "Mon Apr 20 14:55:37 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15644753920, "io_kbytes": 15278080, "bw_bytes": 3128325118, "bw": 3055004, "iops": 745.85083, "runtime": 5001, "total_ios": 3730, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 622876, "max": 8586194, "mean": 1156071.92681, "stddev": 516992.678033, "N": 3730}, "clat_ns": {"min": 9420, "max": 3855948, "mean": 167285.653351, "stddev": 165020.731613, "N": 3730, "percentile": {"1.000000": 100864, "5.000000": 118272, "10.000000": 123392, "20.000000": 127488, "30.000000": 132096, "40.000000": 138240, "50.000000": 144384, "60.000000": 150528, "70.000000": 166912, "80.000000": 181248, "90.000000": 207872, "95.000000": 238592, "99.000000": 354304, "99.500000": 929792, "99.900000": 3358720, "99.950000": 3555328, "99.990000": 3850240}}, "lat_ns": {"min": 827318, "max": 10214070, "mean": 1327986.169705, "stddev": 582808.636787, "N": 3730}, "bw_min": 2142208, "bw_max": 3538944, "bw_agg": 95.6804, "bw_mean": 2923041.0, "bw_dev": 653963.130446, "bw_samples": 4, "iops_min": 523, "iops_max": 864, "iops_mean": 713.5, "iops_stddev": 159.671538, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.06, "sys_cpu": 28.7, "ctx": 14855, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.214477, "20": 0.509383, "50": 0.02681, "100": 0.080429, "250": 95.201072, "500": 3.243968, "750": 0.134048, "1000": 0.107239}, "latency_ms": {"2": 0.294906, "4": 0.187668, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14844, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3598, "write_ticks": 0, "in_queue": 3598, "util": 82.350621}]} 2026-04-20 14:55:23.995036 2026-04-20 14:46:24.505276 +317 8 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776696952, "timestamp_ms": 1776696952066, "time": "Mon Apr 20 14:55:52 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16588472320, "io_kbytes": 16199680, "bw_bytes": 3317031057, "bw": 3239288, "iops": 790.841832, "runtime": 5001, "total_ios": 3955, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 547805, "max": 8425432, "mean": 1020819.872819, "stddev": 425434.031644, "N": 3955}, "clat_ns": {"min": 5890, "max": 4168921, "mean": 226086.545638, "stddev": 265572.149192, "N": 3955, "percentile": {"1.000000": 110080, "5.000000": 119296, "10.000000": 121344, "20.000000": 126464, "30.000000": 132096, "40.000000": 138240, "50.000000": 144384, "60.000000": 156672, "70.000000": 191488, "80.000000": 325632, "90.000000": 407552, "95.000000": 481280, "99.000000": 1269760, "99.500000": 2211840, "99.900000": 3883008, "99.950000": 4079616, "99.990000": 4177920}}, "lat_ns": {"min": 790758, "max": 9486573, "mean": 1251557.773957, "stddev": 528116.274501, "N": 3955}, "bw_min": 3208055, "bw_max": 3616768, "bw_agg": 100.0, "bw_mean": 3436059.5, "bw_dev": 189327.935767, "bw_samples": 4, "iops_min": 783, "iops_max": 883, "iops_mean": 838.75, "iops_stddev": 46.306047, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.86, "sys_cpu": 35.08, "ctx": 14827, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.303413, "20": 0.22756, "50": 0.0, "100": 0.025284, "250": 74.437421, "500": 21.213654, "750": 2.604298, "1000": 0.126422}, "latency_ms": {"2": 0.45512, "4": 0.556258, "10": 0.050569, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15378, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4255, "write_ticks": 0, "in_queue": 4255, "util": 84.976621}]} 2026-04-20 14:55:38.820131 2026-04-20 14:46:24.505276 +318 8 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776696961, "timestamp_ms": 1776696961444, "time": "Mon Apr 20 14:56:01 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260420-145157Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9462349824, "io_kbytes": 9240576, "bw_bytes": 1890201722, "bw": 1845900, "iops": 450.659209, "runtime": 5006, "total_ios": 2256, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1233112, "max": 9760735, "mean": 1924317.83023, "stddev": 853964.29745, "N": 2256}, "clat_ns": {"min": 10120, "max": 5194861, "mean": 270958.373227, "stddev": 326911.066825, "N": 2256, "percentile": {"1.000000": 154624, "5.000000": 166912, "10.000000": 171008, "20.000000": 179200, "30.000000": 187392, "40.000000": 197632, "50.000000": 211968, "60.000000": 224256, "70.000000": 248832, "80.000000": 288768, "90.000000": 342016, "95.000000": 428032, "99.000000": 1499136, "99.500000": 3096576, "99.900000": 4423680, "99.950000": 4816896, "99.990000": 5210112}}, "lat_ns": {"min": 1390333, "max": 11590293, "mean": 2200929.635638, "stddev": 977075.882193, "N": 2256}, "bw_min": 1579476, "bw_max": 2013218, "bw_agg": 99.995985, "bw_mean": 1845826.4, "bw_dev": 172643.193397, "bw_samples": 5, "iops_min": 385, "iops_max": 491, "iops_mean": 450.2, "iops_stddev": 42.222032, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5005, "usr_cpu": 5.354645, "sys_cpu": 18.661339, "ctx": 9029, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.177305, "50": 0.0, "100": 0.044326, "250": 70.390071, "500": 26.196809, "750": 1.152482, "1000": 0.487589}, "latency_ms": {"2": 0.70922, "4": 0.664894, "10": 0.177305, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8795, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3713, "in_queue": 3713, "util": 89.138727}]} 2026-04-20 14:55:53.601344 2026-04-20 14:46:24.505276 +319 8 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776696976, "timestamp_ms": 1776696976320, "time": "Mon Apr 20 14:56:16 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9949696, "io_kbytes": 9716, "bw_bytes": 1989541, "bw": 1942, "iops": 3885.822835, "runtime": 5001, "total_ios": 19433, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84721, "max": 10223780, "mean": 150129.132815, "stddev": 301255.883939, "N": 19433}, "clat_ns": {"min": 4510, "max": 8961027, "mean": 95163.143828, "stddev": 144505.592199, "N": 19433, "percentile": {"1.000000": 4704, "5.000000": 4896, "10.000000": 6624, "20.000000": 67072, "30.000000": 77312, "40.000000": 83456, "50.000000": 89600, "60.000000": 93696, "70.000000": 99840, "80.000000": 111104, "90.000000": 140288, "95.000000": 173056, "99.000000": 272384, "99.500000": 370688, "99.900000": 1925120, "99.950000": 3620864, "99.990000": 5210112}}, "lat_ns": {"min": 144332, "max": 10267590, "mean": 247561.232131, "stddev": 324346.44206, "N": 19433}, "bw_min": 1782, "bw_max": 2453, "bw_agg": 100.0, "bw_mean": 2144.25, "bw_dev": 278.558641, "bw_samples": 4, "iops_min": 3565, "iops_max": 4906, "iops_mean": 4288.75, "iops_stddev": 556.683857, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 0.0, "sys_cpu": 56.58, "ctx": 19449, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.118561, "20": 0.509443, "50": 0.036021, "100": 57.772861, "250": 28.178871, "500": 1.044615, "750": 0.144085, "1000": 0.036021}, "latency_ms": {"2": 0.066897, "4": 0.046313, "10": 0.046313, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 18899, "read_merges": 0, "write_merges": 2365, "read_ticks": 0, "write_ticks": 2522, "in_queue": 2522, "util": 78.103656}]} 2026-04-20 14:56:07.907763 2026-04-20 14:46:24.505276 +320 8 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697001, "timestamp_ms": 1776697001429, "time": "Mon Apr 20 14:56:41 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13402112, "io_kbytes": 13088, "bw_bytes": 2679886, "bw": 2617, "iops": 5234.153169, "runtime": 5001, "total_ios": 26176, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76271, "max": 10144349, "mean": 91759.480669, "stddev": 67299.563324, "N": 26176}, "clat_ns": {"min": 4580, "max": 6547324, "mean": 89500.444186, "stddev": 219173.206928, "N": 26176, "percentile": {"1.000000": 45824, "5.000000": 47872, "10.000000": 48896, "20.000000": 50432, "30.000000": 52480, "40.000000": 59136, "50.000000": 66048, "60.000000": 73216, "70.000000": 78336, "80.000000": 82432, "90.000000": 99840, "95.000000": 128512, "99.000000": 544768, "99.500000": 1564672, "99.900000": 3784704, "99.950000": 4620288, "99.990000": 5799936}}, "lat_ns": {"min": 116951, "max": 10174760, "mean": 183177.224977, "stddev": 232898.957156, "N": 26176}, "bw_min": 1357, "bw_max": 3044, "bw_agg": 95.258977, "bw_mean": 2493.5, "bw_dev": 777.76196, "bw_samples": 4, "iops_min": 2714, "iops_max": 6088, "iops_mean": 4987.5, "iops_stddev": 1555.775155, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.4, "sys_cpu": 54.04, "ctx": 26059, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.179554, "20": 0.019101, "50": 17.603912, "100": 72.39074, "250": 8.622402, "500": 0.145171, "750": 0.110789, "1000": 0.049664}, "latency_ms": {"2": 0.630348, "4": 0.164273, "10": 0.084046, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24785, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2909, "write_ticks": 0, "in_queue": 2909, "util": 77.517468}]} 2026-04-20 14:56:17.810083 2026-04-20 14:46:24.505276 +321 8 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697026, "timestamp_ms": 1776697026323, "time": "Mon Apr 20 14:57:06 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12814848, "io_kbytes": 12514, "bw_bytes": 2562457, "bw": 2502, "iops": 5004.79904, "runtime": 5001, "total_ios": 25029, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79301, "max": 3972839, "mean": 92482.477206, "stddev": 40495.977369, "N": 25029}, "clat_ns": {"min": 4240, "max": 8648745, "mean": 95889.192856, "stddev": 234328.51042, "N": 25029, "percentile": {"1.000000": 47360, "5.000000": 48896, "10.000000": 50432, "20.000000": 54016, "30.000000": 60160, "40.000000": 67072, "50.000000": 70144, "60.000000": 78336, "70.000000": 79360, "80.000000": 84480, "90.000000": 107008, "95.000000": 140288, "99.000000": 651264, "99.500000": 1564672, "99.900000": 3719168, "99.950000": 4882432, "99.990000": 6651904}}, "lat_ns": {"min": 122441, "max": 8766856, "mean": 190475.606776, "stddev": 241671.673302, "N": 25029}, "bw_min": 1571, "bw_max": 2994, "bw_agg": 95.468373, "bw_mean": 2389.0, "bw_dev": 602.5872, "bw_samples": 4, "iops_min": 3143, "iops_max": 5989, "iops_mean": 4779.0, "iops_stddev": 1205.1744, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.2, "sys_cpu": 57.36, "ctx": 24908, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.175796, "20": 0.043949, "50": 7.834912, "100": 80.083104, "250": 10.359982, "500": 0.375564, "750": 0.167805, "1000": 0.087898}, "latency_ms": {"2": 0.535379, "4": 0.27568, "10": 0.05993, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24833, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2993, "write_ticks": 0, "in_queue": 2992, "util": 70.816044}]} 2026-04-20 14:56:43.166787 2026-04-20 14:46:24.505276 +322 8 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697036, "timestamp_ms": 1776697036164, "time": "Mon Apr 20 14:57:16 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5984256, "io_kbytes": 5844, "bw_bytes": 1196611, "bw": 1168, "iops": 2337.132573, "runtime": 5001, "total_ios": 11688, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95031, "max": 8615245, "mean": 406518.594798, "stddev": 348522.790361, "N": 11688}, "clat_ns": {"min": 4510, "max": 270633, "mean": 7391.346595, "stddev": 14867.744469, "N": 11688, "percentile": {"1.000000": 4768, "5.000000": 4832, "10.000000": 4896, "20.000000": 4960, "30.000000": 4960, "40.000000": 5024, "50.000000": 5088, "60.000000": 5152, "70.000000": 5216, "80.000000": 5408, "90.000000": 8160, "95.000000": 8768, "99.000000": 104960, "99.500000": 125440, "99.900000": 173056, "99.950000": 211968, "99.990000": 259072}}, "lat_ns": {"min": 178692, "max": 8630375, "mean": 417095.53371, "stddev": 348868.014051, "N": 11688}, "bw_min": 903, "bw_max": 1353, "bw_agg": 96.443038, "bw_mean": 1127.25, "bw_dev": 231.491361, "bw_samples": 4, "iops_min": 1807, "iops_max": 2707, "iops_mean": 2255.25, "iops_stddev": 462.735616, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.76, "sys_cpu": 70.42, "ctx": 11707, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.894251, "20": 1.428816, "50": 0.102669, "100": 0.419233, "250": 1.129363, "500": 0.025667, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 11364, "read_merges": 0, "write_merges": 19522, "read_ticks": 0, "write_ticks": 1685, "in_queue": 1685, "util": 68.849166}]} 2026-04-20 14:57:07.77893 2026-04-20 14:46:24.505276 +323 8 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697047, "timestamp_ms": 1776697047278, "time": "Mon Apr 20 14:57:27 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 53944320, "io_kbytes": 52680, "bw_bytes": 10786706, "bw": 10533, "iops": 2633.473305, "runtime": 5001, "total_ios": 13170, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 245112, "max": 400646376, "mean": 361598.52126, "stddev": 3502336.037089, "N": 13170}, "clat_ns": {"min": 4630, "max": 2954119, "mean": 5911.325437, "stddev": 25935.643099, "N": 13170, "percentile": {"1.000000": 4768, "5.000000": 4832, "10.000000": 4896, "20.000000": 4960, "30.000000": 5024, "40.000000": 5024, "50.000000": 5088, "60.000000": 5152, "70.000000": 5216, "80.000000": 5472, "90.000000": 7840, "95.000000": 8384, "99.000000": 11840, "99.500000": 16064, "99.900000": 19840, "99.950000": 21376, "99.990000": 264192}}, "lat_ns": {"min": 252662, "max": 400858448, "mean": 370710.731891, "stddev": 3504344.929964, "N": 13170}, "bw_min": 6833, "bw_max": 13474, "bw_agg": 100.0, "bw_mean": 11382.25, "bw_dev": 3082.861698, "bw_samples": 4, "iops_min": 1708, "iops_max": 3368, "iops_mean": 2845.25, "iops_stddev": 770.6341, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.68, "sys_cpu": 63.36, "ctx": 13212, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 98.344723, "20": 1.556568, "50": 0.060744, "100": 0.0, "250": 0.022779, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 12897, "read_merges": 0, "write_merges": 25795, "read_ticks": 0, "write_ticks": 1834, "in_queue": 1834, "util": 66.639871}]} 2026-04-20 14:57:18.503793 2026-04-20 14:46:24.505276 +324 8 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697063, "timestamp_ms": 1776697063477, "time": "Mon Apr 20 14:57:43 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 107331584, "io_kbytes": 104816, "bw_bytes": 21457733, "bw": 20954, "iops": 5238.704518, "runtime": 5002, "total_ios": 26204, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 76901, "max": 3177031, "mean": 90438.349908, "stddev": 25131.138695, "N": 26204}, "clat_ns": {"min": 3830, "max": 5596945, "mean": 89988.306633, "stddev": 205047.918316, "N": 26204, "percentile": {"1.000000": 46848, "5.000000": 49408, "10.000000": 50944, "20.000000": 55552, "30.000000": 61184, "40.000000": 67072, "50.000000": 70144, "60.000000": 77312, "70.000000": 78336, "80.000000": 82432, "90.000000": 95744, "95.000000": 123392, "99.000000": 232448, "99.500000": 1515520, "99.900000": 3850240, "99.950000": 4177920, "99.990000": 5341184}}, "lat_ns": {"min": 122561, "max": 5724526, "mean": 182559.846321, "stddev": 209897.407563, "N": 26204}, "bw_min": 22040, "bw_max": 24000, "bw_agg": 100.0, "bw_mean": 23340.0, "bw_dev": 883.321006, "bw_samples": 4, "iops_min": 5510, "iops_max": 6000, "iops_mean": 5835.0, "iops_stddev": 220.830252, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 10.077984, "sys_cpu": 58.608278, "ctx": 26037, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.064876, "10": 0.244238, "20": 0.01, "50": 6.189895, "100": 84.582506, "250": 7.945352, "500": 0.114486, "750": 0.064876, "1000": 0.049611}, "latency_ms": {"2": 0.484659, "4": 0.183178, "10": 0.072508, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 26164, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3107, "write_ticks": 0, "in_queue": 3107, "util": 77.714286}]} 2026-04-20 14:57:28.796417 2026-04-20 14:46:24.505276 +325 8 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697079, "timestamp_ms": 1776697079192, "time": "Mon Apr 20 14:57:59 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 94806016, "io_kbytes": 92584, "bw_bytes": 18957411, "bw": 18513, "iops": 4628.274345, "runtime": 5001, "total_ios": 23146, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77280, "max": 11967977, "mean": 94123.656658, "stddev": 112373.661389, "N": 23146}, "clat_ns": {"min": 4030, "max": 156660381, "mean": 109348.970621, "stddev": 1065597.898061, "N": 23146, "percentile": {"1.000000": 47872, "5.000000": 49920, "10.000000": 51456, "20.000000": 54528, "30.000000": 60672, "40.000000": 66048, "50.000000": 72192, "60.000000": 78336, "70.000000": 80384, "80.000000": 85504, "90.000000": 104960, "95.000000": 138240, "99.000000": 1302528, "99.500000": 1908736, "99.900000": 4292608, "99.950000": 5341184, "99.990000": 8355840}}, "lat_ns": {"min": 122232, "max": 156822313, "mean": 205582.446989, "stddev": 1072895.225866, "N": 23146}, "bw_min": 13058, "bw_max": 22957, "bw_agg": 100.0, "bw_mean": 18763.75, "bw_dev": 4153.674869, "bw_samples": 4, "iops_min": 3264, "iops_max": 5739, "iops_mean": 4690.75, "iops_stddev": 1038.563551, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.86, "sys_cpu": 56.68, "ctx": 23049, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.349952, "20": 0.012961, "50": 4.039575, "100": 83.902186, "250": 10.040612, "500": 0.203059, "750": 0.155534, "1000": 0.10369}, "latency_ms": {"2": 0.725827, "4": 0.32835, "10": 0.133932, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22881, "write_ios": 20, "read_merges": 0, "write_merges": 11, "read_ticks": 2777, "write_ticks": 12, "in_queue": 2791, "util": 68.779715}]} 2026-04-20 14:57:44.927666 2026-04-20 14:46:24.505276 +353 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 14:51:55' --until '2026-04-20 15:04:25' 0 Systemd errors records 2026-04-20 14:51:55.855184 2026-04-20 15:04:25.925435 +326 8 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697088, "timestamp_ms": 1776697088967, "time": "Mon Apr 20 14:58:08 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 48099328, "io_kbytes": 46972, "bw_bytes": 9617942, "bw": 9392, "iops": 2348.130374, "runtime": 5001, "total_ios": 11743, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 96741, "max": 7883457, "mean": 406114.000766, "stddev": 347685.719268, "N": 11743}, "clat_ns": {"min": 4420, "max": 241732, "mean": 5854.379716, "stddev": 4064.131367, "N": 11743, "percentile": {"1.000000": 4640, "5.000000": 4832, "10.000000": 4832, "20.000000": 4896, "30.000000": 5024, "40.000000": 5088, "50.000000": 5280, "60.000000": 5408, "70.000000": 5536, "80.000000": 5728, "90.000000": 8032, "95.000000": 8640, "99.000000": 14272, "99.500000": 16768, "99.900000": 23424, "99.950000": 123392, "99.990000": 160768}}, "lat_ns": {"min": 218232, "max": 7898067, "mean": 415684.428766, "stddev": 348880.632434, "N": 11743}, "bw_min": 5170, "bw_max": 11068, "bw_agg": 99.078826, "bw_mean": 9306.0, "bw_dev": 2784.173725, "bw_samples": 4, "iops_min": 1292, "iops_max": 2767, "iops_mean": 2326.25, "iops_stddev": 696.219972, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.02, "sys_cpu": 68.16, "ctx": 11783, "majf": 0, "minf": 16, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 98.211701, "20": 1.575407, "50": 0.153283, "100": 0.0, "250": 0.05961, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 11415, "read_merges": 0, "write_merges": 22824, "read_ticks": 0, "write_ticks": 1702, "in_queue": 1702, "util": 74.949739}]} 2026-04-20 14:58:01.099542 2026-04-20 14:46:24.505276 +327 8 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697102, "timestamp_ms": 1776697102107, "time": "Mon Apr 20 14:58:22 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 8, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7520387072, "io_kbytes": 7344128, "bw_bytes": 1073574171, "bw": 1048412, "iops": 511.920057, "runtime": 7005, "total_ios": 3586, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 533325, "max": 2704252625, "mean": 1652916.51952, "stddev": 45146040.004458, "N": 3586}, "clat_ns": {"min": 4860, "max": 5600325, "mean": 281971.060792, "stddev": 320990.255542, "N": 3586, "percentile": {"1.000000": 5088, "5.000000": 5280, "10.000000": 5536, "20.000000": 224256, "30.000000": 248832, "40.000000": 264192, "50.000000": 280576, "60.000000": 292864, "70.000000": 313344, "80.000000": 337920, "90.000000": 382976, "95.000000": 436224, "99.000000": 1597440, "99.500000": 3031040, "99.900000": 3948544, "99.950000": 4145152, "99.990000": 5603328}}, "lat_ns": {"min": 765517, "max": 2704650108, "mean": 1939628.334914, "stddev": 45149250.077052, "N": 3586}, "bw_min": 428032, "bw_max": 1966080, "bw_agg": 100.0, "bw_mean": 1467427.0, "bw_dev": 616931.239534, "bw_samples": 5, "iops_min": 209, "iops_max": 960, "iops_mean": 716.4, "iops_stddev": 301.212218, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 7005, "usr_cpu": 0.942184, "sys_cpu": 18.044254, "ctx": 7849, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 17.233687, "20": 1.589515, "50": 0.055772, "100": 0.0, "250": 12.353597, "500": 65.755717, "750": 1.25488, "1000": 0.250976}, "latency_ms": {"2": 0.725042, "4": 0.697156, "10": 0.083659, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7841, "read_merges": 0, "write_merges": 673, "read_ticks": 0, "write_ticks": 3121, "in_queue": 3120, "util": 56.135321}]} 2026-04-20 14:58:11.578522 2026-04-20 14:46:24.505276 +328 8 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697118, "timestamp_ms": 1776697118650, "time": "Mon Apr 20 14:58:38 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14849933312, "io_kbytes": 14501888, "bw_bytes": 2969392783, "bw": 2899797, "iops": 1415.916817, "runtime": 5001, "total_ios": 7081, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 187482, "max": 6816057, "mean": 509219.009462, "stddev": 289152.121013, "N": 7081}, "clat_ns": {"min": 6900, "max": 6654366, "mean": 183190.449936, "stddev": 215792.909001, "N": 7081, "percentile": {"1.000000": 99840, "5.000000": 109056, "10.000000": 117248, "20.000000": 136192, "30.000000": 146432, "40.000000": 152576, "50.000000": 160768, "60.000000": 171008, "70.000000": 181248, "80.000000": 195584, "90.000000": 222208, "95.000000": 248832, "99.000000": 452608, "99.500000": 1335296, "99.900000": 3457024, "99.950000": 4358144, "99.990000": 6651904}}, "lat_ns": {"min": 473515, "max": 7499613, "mean": 695981.876147, "stddev": 385790.10862, "N": 7081}, "bw_min": 2131968, "bw_max": 3241984, "bw_agg": 98.029599, "bw_mean": 2842660.5, "bw_dev": 517829.123906, "bw_samples": 4, "iops_min": 1041, "iops_max": 1583, "iops_mean": 1387.75, "iops_stddev": 252.767845, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.22, "sys_cpu": 38.74, "ctx": 14118, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.141223, "20": 0.014122, "50": 0.0, "100": 0.847338, "250": 94.082757, "500": 4.010733, "750": 0.18359, "1000": 0.056489}, "latency_ms": {"2": 0.296568, "4": 0.282446, "10": 0.084734, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14152, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3341, "write_ticks": 0, "in_queue": 3341, "util": 81.037532}]} 2026-04-20 14:58:23.682066 2026-04-20 14:46:24.505276 +329 8 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697134, "timestamp_ms": 1776697134770, "time": "Mon Apr 20 14:58:54 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14294188032, "io_kbytes": 13959168, "bw_bytes": 2855981624, "bw": 2789044, "iops": 1361.838162, "runtime": 5005, "total_ios": 6816, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 201902, "max": 5954588, "mean": 529858.203932, "stddev": 293988.559106, "N": 6816}, "clat_ns": {"min": 4790, "max": 5076639, "mean": 188490.423122, "stddev": 238186.303083, "N": 6816, "percentile": {"1.000000": 97792, "5.000000": 111104, "10.000000": 120320, "20.000000": 138240, "30.000000": 146432, "40.000000": 154624, "50.000000": 160768, "60.000000": 171008, "70.000000": 181248, "80.000000": 193536, "90.000000": 218112, "95.000000": 257024, "99.000000": 593920, "99.500000": 2244608, "99.900000": 3719168, "99.950000": 3948544, "99.990000": 5079040}}, "lat_ns": {"min": 486855, "max": 6871048, "mean": 722191.021714, "stddev": 407824.385764, "N": 6816}, "bw_min": 2836480, "bw_max": 3146677, "bw_agg": 100.0, "bw_mean": 3054049.5, "bw_dev": 145746.547222, "bw_samples": 4, "iops_min": 1385, "iops_max": 1536, "iops_mean": 1491.0, "iops_stddev": 70.997653, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5004, "usr_cpu": 2.857714, "sys_cpu": 41.666667, "ctx": 13580, "majf": 0, "minf": 529, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.425469, "20": 0.146714, "50": 0.0, "100": 0.630869, "250": 93.236502, "500": 4.430751, "750": 0.205399, "1000": 0.088028}, "latency_ms": {"2": 0.234742, "4": 0.557512, "10": 0.044014, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13441, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3257, "write_ticks": 0, "in_queue": 3257, "util": 58.426966}]} 2026-04-20 14:58:40.087739 2026-04-20 14:46:24.505276 +330 8 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697144, "timestamp_ms": 1776697144078, "time": "Mon Apr 20 14:59:04 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8487174144, "io_kbytes": 8288256, "bw_bytes": 1697095409, "bw": 1657319, "iops": 809.238152, "runtime": 5001, "total_ios": 4047, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 492655, "max": 15425510, "mean": 935928.731159, "stddev": 674683.533063, "N": 4047}, "clat_ns": {"min": 4860, "max": 4480264, "mean": 279256.676798, "stddev": 298043.258932, "N": 4047, "percentile": {"1.000000": 5536, "5.000000": 5920, "10.000000": 7520, "20.000000": 226304, "30.000000": 242688, "40.000000": 254976, "50.000000": 268288, "60.000000": 284672, "70.000000": 301056, "80.000000": 325632, "90.000000": 370688, "95.000000": 423936, "99.000000": 1581056, "99.500000": 2408448, "99.900000": 3915776, "99.950000": 4112384, "99.990000": 4489216}}, "lat_ns": {"min": 700577, "max": 15997316, "mean": 1219870.83148, "stddev": 736613.073535, "N": 4047}, "bw_min": 1333962, "bw_max": 1863864, "bw_agg": 98.350002, "bw_mean": 1629974.0, "bw_dev": 260461.691571, "bw_samples": 4, "iops_min": 651, "iops_max": 910, "iops_mean": 795.75, "iops_stddev": 127.25663, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.5, "sys_cpu": 23.14, "ctx": 8782, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 13.689152, "20": 2.89103, "50": 0.172968, "100": 0.02471, "250": 18.532246, "500": 61.527057, "750": 1.062515, "1000": 0.296516}, "latency_ms": {"2": 1.087225, "4": 0.617742, "10": 0.098839, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8545, "read_merges": 0, "write_merges": 674, "read_ticks": 0, "write_ticks": 3516, "in_queue": 3519, "util": 75.376279}]} 2026-04-20 14:58:56.232327 2026-04-20 14:46:24.505276 +331 8 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697155, "timestamp_ms": 1776697155913, "time": "Mon Apr 20 14:59:15 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9181331456, "io_kbytes": 8966144, "bw_bytes": 1835532078, "bw": 1792511, "iops": 437.62495, "runtime": 5002, "total_ios": 2189, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1306933, "max": 25253377, "mean": 2054120.190955, "stddev": 1005369.257744, "N": 2189}, "clat_ns": {"min": 5500, "max": 3831328, "mean": 207692.885336, "stddev": 193870.838048, "N": 2189, "percentile": {"1.000000": 5728, "5.000000": 6112, "10.000000": 7584, "20.000000": 171008, "30.000000": 183296, "40.000000": 191488, "50.000000": 201728, "60.000000": 214016, "70.000000": 228352, "80.000000": 246784, "90.000000": 288768, "95.000000": 346112, "99.000000": 856064, "99.500000": 1335296, "99.900000": 2768896, "99.950000": 2899968, "99.990000": 3817472}}, "lat_ns": {"min": 1475374, "max": 25507389, "mean": 2267446.108725, "stddev": 1051208.412837, "N": 2189}, "bw_min": 1642496, "bw_max": 1919104, "bw_agg": 97.463905, "bw_mean": 1747052.0, "bw_dev": 121920.068154, "bw_samples": 4, "iops_min": 401, "iops_max": 468, "iops_mean": 426.25, "iops_stddev": 29.52259, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 9.556178, "sys_cpu": 15.733707, "ctx": 9104, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 11.466423, "20": 3.70032, "50": 0.137049, "100": 0.274098, "250": 65.555048, "500": 17.039744, "750": 0.77661, "1000": 0.182732}, "latency_ms": {"2": 0.548196, "4": 0.319781, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8886, "read_merges": 0, "write_merges": 334, "read_ticks": 0, "write_ticks": 3762, "in_queue": 3761, "util": 81.647341}]} 2026-04-20 14:59:07.344355 2026-04-20 14:46:24.505276 +332 8 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697172, "timestamp_ms": 1776697172918, "time": "Mon Apr 20 14:59:32 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15598616576, "io_kbytes": 15233024, "bw_bytes": 3119099495, "bw": 3045995, "iops": 743.65127, "runtime": 5001, "total_ios": 3719, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 591186, "max": 24047775, "mean": 1161208.442861, "stddev": 644597.990595, "N": 3719}, "clat_ns": {"min": 6130, "max": 3777167, "mean": 164159.814466, "stddev": 148494.050225, "N": 3719, "percentile": {"1.000000": 101888, "5.000000": 119296, "10.000000": 124416, "20.000000": 128512, "30.000000": 134144, "40.000000": 140288, "50.000000": 144384, "60.000000": 154624, "70.000000": 168960, "80.000000": 179200, "90.000000": 199680, "95.000000": 230400, "99.000000": 309248, "99.500000": 440320, "99.900000": 2932736, "99.950000": 3457024, "99.990000": 3784704}}, "lat_ns": {"min": 826138, "max": 24397949, "mean": 1331278.606884, "stddev": 685519.951992, "N": 3719}, "bw_min": 2277376, "bw_max": 3444736, "bw_agg": 97.432183, "bw_mean": 2967780.0, "bw_dev": 500228.858792, "bw_samples": 4, "iops_min": 556, "iops_max": 841, "iops_mean": 724.5, "iops_stddev": 122.094226, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 3.879224, "sys_cpu": 31.313737, "ctx": 14788, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.134445, "20": 0.403334, "50": 0.026889, "100": 0.215112, "250": 96.101102, "500": 2.662006, "750": 0.053778, "1000": 0.026889}, "latency_ms": {"2": 0.161334, "4": 0.215112, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14830, "write_ios": 29, "read_merges": 0, "write_merges": 18, "read_ticks": 3616, "write_ticks": 12, "in_queue": 3629, "util": 84.107002}]} 2026-04-20 14:59:19.362084 2026-04-20 14:46:24.505276 +333 8 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697189, "timestamp_ms": 1776697189116, "time": "Mon Apr 20 14:59:49 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16659775488, "io_kbytes": 16269312, "bw_bytes": 3331288839, "bw": 3253211, "iops": 794.241152, "runtime": 5001, "total_ios": 3972, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 666267, "max": 9004398, "mean": 1085757.97709, "stddev": 367879.955303, "N": 3972}, "clat_ns": {"min": 9280, "max": 4582255, "mean": 155360.784995, "stddev": 114538.429118, "N": 3972, "percentile": {"1.000000": 110080, "5.000000": 121344, "10.000000": 124416, "20.000000": 128512, "30.000000": 132096, "40.000000": 136192, "50.000000": 140288, "60.000000": 146432, "70.000000": 152576, "80.000000": 164864, "90.000000": 189440, "95.000000": 218112, "99.000000": 292864, "99.500000": 440320, "99.900000": 1761280, "99.950000": 3555328, "99.990000": 4554752}}, "lat_ns": {"min": 862829, "max": 9232081, "mean": 1245685.988419, "stddev": 412837.788276, "N": 3972}, "bw_min": 3403776, "bw_max": 3518464, "bw_agg": 100.0, "bw_mean": 3467425.5, "bw_dev": 51355.369765, "bw_samples": 4, "iops_min": 831, "iops_max": 859, "iops_mean": 846.5, "iops_stddev": 12.556539, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 0.78, "sys_cpu": 34.78, "ctx": 15817, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.100705, "20": 0.226586, "50": 0.0, "100": 0.226586, "250": 97.004028, "500": 1.988922, "750": 0.125881, "1000": 0.075529}, "latency_ms": {"2": 0.20141, "4": 0.025176, "10": 0.025176, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15685, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3694, "write_ticks": 0, "in_queue": 3693, "util": 83.605903}]} 2026-04-20 14:59:34.435681 2026-04-20 14:46:24.505276 +334 8 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697198, "timestamp_ms": 1776697198707, "time": "Mon Apr 20 14:59:58 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260420-145606Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8845787136, "io_kbytes": 8638464, "bw_bytes": 1768450047, "bw": 1727001, "iops": 421.631347, "runtime": 5002, "total_ios": 2109, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1226952, "max": 47767346, "mean": 2123643.471788, "stddev": 1415837.82289, "N": 2109}, "clat_ns": {"min": 5750, "max": 16353789, "mean": 221497.393077, "stddev": 442348.450282, "N": 2109, "percentile": {"1.000000": 6112, "5.000000": 6560, "10.000000": 9536, "20.000000": 166912, "30.000000": 177152, "40.000000": 187392, "50.000000": 197632, "60.000000": 214016, "70.000000": 228352, "80.000000": 248832, "90.000000": 292864, "95.000000": 342016, "99.000000": 1073152, "99.500000": 2375680, "99.900000": 4489216, "99.950000": 5013504, "99.990000": 16318464}}, "lat_ns": {"min": 1385114, "max": 48175970, "mean": 2351592.821242, "stddev": 1534113.15266, "N": 2109}, "bw_min": 1420978, "bw_max": 1970176, "bw_agg": 98.755184, "bw_mean": 1705504.5, "bw_dev": 248984.384798, "bw_samples": 4, "iops_min": 346, "iops_max": 481, "iops_mean": 416.0, "iops_stddev": 61.237244, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 1.559688, "sys_cpu": 24.095181, "ctx": 8773, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 11.095306, "20": 4.55192, "50": 0.284495, "100": 0.047416, "250": 64.201043, "500": 17.733523, "750": 0.853485, "1000": 0.189663}, "latency_ms": {"2": 0.284495, "4": 0.56899, "10": 0.142248, "20": 0.047416, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8575, "read_merges": 0, "write_merges": 334, "read_ticks": 0, "write_ticks": 3737, "in_queue": 3736, "util": 89.843436}]} 2026-04-20 14:59:50.780439 2026-04-20 14:46:24.505276 +335 8 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697228, "timestamp_ms": 1776697228212, "time": "Mon Apr 20 15:00:28 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10247168, "io_kbytes": 10007, "bw_bytes": 2049023, "bw": 2000, "iops": 4001.9996, "runtime": 5001, "total_ios": 20014, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82471, "max": 7672135, "mean": 146037.47182, "stddev": 295033.02967, "N": 20014}, "clat_ns": {"min": 4610, "max": 7837776, "mean": 92268.065804, "stddev": 151588.056116, "N": 20014, "percentile": {"1.000000": 4832, "5.000000": 5024, "10.000000": 5792, "20.000000": 63232, "30.000000": 72192, "40.000000": 80384, "50.000000": 87552, "60.000000": 90624, "70.000000": 94720, "80.000000": 104960, "90.000000": 128512, "95.000000": 164864, "99.000000": 288768, "99.500000": 440320, "99.900000": 2310144, "99.950000": 3489792, "99.990000": 5603328}}, "lat_ns": {"min": 140691, "max": 7991558, "mean": 240474.349505, "stddev": 323894.229623, "N": 20014}, "bw_min": 964, "bw_max": 2451, "bw_agg": 93.803144, "bw_mean": 1877.25, "bw_dev": 664.304837, "bw_samples": 4, "iops_min": 1928, "iops_max": 4902, "iops_mean": 3754.75, "iops_stddev": 1328.581041, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 9.9, "sys_cpu": 47.14, "ctx": 20025, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.146497, "20": 0.51464, "50": 0.034976, "100": 63.245728, "250": 22.679125, "500": 0.919356, "750": 0.134906, "1000": 0.079944}, "latency_ms": {"2": 0.134906, "4": 0.069951, "10": 0.039972, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 19417, "read_merges": 0, "write_merges": 2428, "read_ticks": 0, "write_ticks": 2517, "in_queue": 2517, "util": 75.210928}]} 2026-04-20 15:00:20.388217 2026-04-20 14:46:24.505276 +336 8 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697253, "timestamp_ms": 1776697253294, "time": "Mon Apr 20 15:00:53 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13423104, "io_kbytes": 13108, "bw_bytes": 2683547, "bw": 2620, "iops": 5241.303479, "runtime": 5002, "total_ios": 26217, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77991, "max": 1681107, "mean": 93559.830606, "stddev": 29658.298723, "N": 26217}, "clat_ns": {"min": 4370, "max": 12867876, "mean": 85084.931953, "stddev": 184998.736451, "N": 26217, "percentile": {"1.000000": 46848, "5.000000": 48896, "10.000000": 49920, "20.000000": 51456, "30.000000": 57088, "40.000000": 63744, "50.000000": 71168, "60.000000": 78336, "70.000000": 80384, "80.000000": 85504, "90.000000": 102912, "95.000000": 134144, "99.000000": 317440, "99.500000": 464896, "99.900000": 3096576, "99.950000": 4014080, "99.990000": 6586368}}, "lat_ns": {"min": 120031, "max": 13164529, "mean": 181227.724301, "stddev": 193398.094189, "N": 26217}, "bw_min": 2577, "bw_max": 3038, "bw_agg": 100.0, "bw_mean": 2823.5, "bw_dev": 225.971237, "bw_samples": 4, "iops_min": 5155, "iops_max": 6077, "iops_mean": 5647.75, "iops_stddev": 451.695602, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 16.953219, "sys_cpu": 54.238305, "ctx": 26058, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.198345, "20": 0.045772, "50": 10.661021, "100": 78.231682, "250": 9.463325, "500": 0.934508, "750": 0.133501, "1000": 0.061029}, "latency_ms": {"2": 0.095358, "4": 0.122058, "10": 0.049586, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 25974, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3193, "write_ticks": 0, "in_queue": 3194, "util": 81.64271}]} 2026-04-20 15:00:30.088774 2026-04-20 14:46:24.505276 +337 8 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697278, "timestamp_ms": 1776697278477, "time": "Mon Apr 20 15:01:18 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12851200, "io_kbytes": 12550, "bw_bytes": 2569726, "bw": 2509, "iops": 5018.996201, "runtime": 5001, "total_ios": 25100, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78871, "max": 3326302, "mean": 93226.444183, "stddev": 35706.384204, "N": 25100}, "clat_ns": {"min": 4580, "max": 7536373, "mean": 94891.516096, "stddev": 228500.349735, "N": 25100, "percentile": {"1.000000": 48896, "5.000000": 50432, "10.000000": 51968, "20.000000": 54016, "30.000000": 60672, "40.000000": 66048, "50.000000": 71168, "60.000000": 79360, "70.000000": 80384, "80.000000": 84480, "90.000000": 104960, "95.000000": 136192, "99.000000": 561152, "99.500000": 1564672, "99.900000": 3817472, "99.950000": 4882432, "99.990000": 5865472}}, "lat_ns": {"min": 119771, "max": 7670935, "mean": 190135.19988, "stddev": 234897.565262, "N": 25100}, "bw_min": 1142, "bw_max": 2912, "bw_agg": 95.676504, "bw_mean": 2401.0, "bw_dev": 846.251736, "bw_samples": 4, "iops_min": 2285, "iops_max": 5825, "iops_mean": 4802.75, "iops_stddev": 1692.314465, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.98, "sys_cpu": 59.98, "ctx": 24976, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.223108, "20": 0.059761, "50": 3.569721, "100": 84.944223, "250": 10.023904, "500": 0.131474, "750": 0.087649, "1000": 0.079681}, "latency_ms": {"2": 0.59761, "4": 0.195219, "10": 0.087649, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23879, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2881, "write_ticks": 0, "in_queue": 2881, "util": 72.861236}]} 2026-04-20 15:00:55.068007 2026-04-20 14:46:24.505276 +396 10 loader /usr/bin/iperf3 --time 40 --port 5201 --client 10.5.0.10 --json --version4 {"client_returncode": 1} 2026-04-20 18:20:45.054935 2026-04-20 18:15:48.846993 +397 10 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-20 18:20:46.489989 2026-04-20 18:20:46.489992 +398 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:20:44' --until '2026-04-20 18:20:46' 0 OOM records. 2026-04-20 18:20:44.944615 2026-04-20 18:20:46.204231 +338 8 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697288, "timestamp_ms": 1776697288177, "time": "Mon Apr 20 15:01:28 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6518272, "io_kbytes": 6365, "bw_bytes": 1303393, "bw": 1272, "iops": 2545.690862, "runtime": 5001, "total_ios": 12731, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95181, "max": 5275242, "mean": 370691.769696, "stddev": 162056.918229, "N": 12731}, "clat_ns": {"min": 4470, "max": 587915, "mean": 7786.719425, "stddev": 17275.289518, "N": 12731, "percentile": {"1.000000": 4768, "5.000000": 4960, "10.000000": 5024, "20.000000": 5152, "30.000000": 5216, "40.000000": 5280, "50.000000": 5280, "60.000000": 5408, "70.000000": 5472, "80.000000": 5600, "90.000000": 7008, "95.000000": 9536, "99.000000": 110080, "99.500000": 126464, "99.900000": 201728, "99.950000": 232448, "99.990000": 585728}}, "lat_ns": {"min": 182551, "max": 5304762, "mean": 381983.426832, "stddev": 160966.619655, "N": 12731}, "bw_min": 1219, "bw_max": 1330, "bw_agg": 100.0, "bw_mean": 1290.25, "bw_dev": 48.856081, "bw_samples": 4, "iops_min": 2439, "iops_max": 2660, "iops_mean": 2581.0, "iops_stddev": 97.348172, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.12, "sys_cpu": 76.92, "ctx": 12750, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.276805, "20": 1.924436, "50": 0.054984, "100": 0.353468, "250": 1.358888, "500": 0.01571, "750": 0.01571, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 12579, "read_merges": 0, "write_merges": 21638, "read_ticks": 0, "write_ticks": 1830, "in_queue": 1830, "util": 85.358005}]} 2026-04-20 15:01:19.946757 2026-04-20 14:46:24.505276 +339 8 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697300, "timestamp_ms": 1776697300982, "time": "Mon Apr 20 15:01:40 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 62255104, "io_kbytes": 60796, "bw_bytes": 12448531, "bw": 12156, "iops": 3039.192162, "runtime": 5001, "total_ios": 15199, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93471, "max": 4536984, "mean": 108731.886308, "stddev": 69091.001166, "N": 15199}, "clat_ns": {"min": 5850, "max": 12039977, "mean": 207421.384696, "stddev": 282473.661141, "N": 15199, "percentile": {"1.000000": 138240, "5.000000": 146432, "10.000000": 150528, "20.000000": 158720, "30.000000": 162816, "40.000000": 168960, "50.000000": 173056, "60.000000": 177152, "70.000000": 185344, "80.000000": 201728, "90.000000": 234496, "95.000000": 280576, "99.000000": 905216, "99.500000": 2179072, "99.900000": 4358144, "99.950000": 5668864, "99.990000": 7241728}}, "lat_ns": {"min": 230892, "max": 12174819, "mean": 318649.307981, "stddev": 294461.067411, "N": 15199}, "bw_min": 12435, "bw_max": 14044, "bw_agg": 100.0, "bw_mean": 13414.75, "bw_dev": 699.038089, "bw_samples": 4, "iops_min": 3108, "iops_max": 3511, "iops_mean": 3353.25, "iops_stddev": 175.026427, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.18, "sys_cpu": 36.46, "ctx": 15210, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.302651, "20": 0.111849, "50": 0.0, "100": 0.0, "250": 91.5126, "500": 6.803079, "750": 0.203961, "1000": 0.10527}, "latency_ms": {"2": 0.375025, "4": 0.460557, "10": 0.118429, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 14970, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2083, "in_queue": 2082, "util": 77.219767}]} 2026-04-20 15:01:32.244166 2026-04-20 14:46:24.505276 +340 8 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697317, "timestamp_ms": 1776697317166, "time": "Mon Apr 20 15:01:57 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 101167104, "io_kbytes": 98796, "bw_bytes": 20229374, "bw": 19755, "iops": 4938.812238, "runtime": 5001, "total_ios": 24699, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78051, "max": 3933328, "mean": 94986.977327, "stddev": 39150.9714, "N": 24699}, "clat_ns": {"min": 4060, "max": 22437939, "mean": 97258.166403, "stddev": 273550.522436, "N": 24699, "percentile": {"1.000000": 45312, "5.000000": 48384, "10.000000": 49408, "20.000000": 51968, "30.000000": 59136, "40.000000": 63744, "50.000000": 70144, "60.000000": 77312, "70.000000": 80384, "80.000000": 86528, "90.000000": 105984, "95.000000": 140288, "99.000000": 921600, "99.500000": 1662976, "99.900000": 3883008, "99.950000": 4751360, "99.990000": 5734400}}, "lat_ns": {"min": 121461, "max": 22565700, "mean": 194339.417993, "stddev": 281684.757671, "N": 24699}, "bw_min": 7828, "bw_max": 23372, "bw_agg": 96.146603, "bw_mean": 18994.5, "bw_dev": 7483.108334, "bw_samples": 4, "iops_min": 1957, "iops_max": 5843, "iops_mean": 4748.5, "iops_stddev": 1870.717955, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.92, "sys_cpu": 59.98, "ctx": 24565, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.153852, "20": 0.044536, "50": 11.506539, "100": 76.363416, "250": 10.328353, "500": 0.376533, "750": 0.141706, "1000": 0.121462}, "latency_ms": {"2": 0.627556, "4": 0.25912, "10": 0.072877, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 24345, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2962, "write_ticks": 0, "in_queue": 2962, "util": 74.47782}]} 2026-04-20 15:01:42.462923 2026-04-20 14:46:24.505276 +341 8 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697334, "timestamp_ms": 1776697334162, "time": "Mon Apr 20 15:02:14 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 98254848, "io_kbytes": 95952, "bw_bytes": 19647040, "bw": 19186, "iops": 4796.640672, "runtime": 5001, "total_ios": 23988, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79681, "max": 5269151, "mean": 96749.753168, "stddev": 47734.948044, "N": 23988}, "clat_ns": {"min": 4750, "max": 9182180, "mean": 99451.359471, "stddev": 245663.890215, "N": 23988, "percentile": {"1.000000": 45312, "5.000000": 48384, "10.000000": 49920, "20.000000": 54528, "30.000000": 61184, "40.000000": 67072, "50.000000": 73216, "60.000000": 79360, "70.000000": 82432, "80.000000": 90624, "90.000000": 114176, "95.000000": 144384, "99.000000": 880640, "99.500000": 1662976, "99.900000": 3883008, "99.950000": 5210112, "99.990000": 7569408}}, "lat_ns": {"min": 123281, "max": 9274861, "mean": 198311.958938, "stddev": 253722.649605, "N": 23988}, "bw_min": 13590, "bw_max": 22912, "bw_agg": 98.412626, "bw_mean": 18882.25, "bw_dev": 4627.639886, "bw_samples": 4, "iops_min": 3397, "iops_max": 5728, "iops_mean": 4720.25, "iops_stddev": 1157.233879, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.8, "sys_cpu": 53.86, "ctx": 23817, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.204269, "20": 0.045856, "50": 9.308821, "100": 75.304319, "250": 13.556778, "500": 0.387694, "750": 0.129231, "1000": 0.141738}, "latency_ms": {"2": 0.56695, "4": 0.262631, "10": 0.091713, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23365, "write_ios": 1, "read_merges": 0, "write_merges": 1, "read_ticks": 2897, "write_ticks": 448, "in_queue": 3344, "util": 74.192902}]} 2026-04-20 15:01:59.141476 2026-04-20 14:46:24.505276 +342 8 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697343, "timestamp_ms": 1776697343964, "time": "Mon Apr 20 15:02:23 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 45395968, "io_kbytes": 44332, "bw_bytes": 9077378, "bw": 8864, "iops": 2216.156769, "runtime": 5001, "total_ios": 11083, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 97871, "max": 811407, "mean": 114719.882974, "stddev": 22630.671626, "N": 11083}, "clat_ns": {"min": 5930, "max": 7061069, "mean": 320068.071912, "stddev": 378735.08851, "N": 11083, "percentile": {"1.000000": 175104, "5.000000": 191488, "10.000000": 201728, "20.000000": 216064, "30.000000": 230400, "40.000000": 248832, "50.000000": 272384, "60.000000": 288768, "70.000000": 301056, "80.000000": 317440, "90.000000": 370688, "95.000000": 428032, "99.000000": 2244608, "99.500000": 3653632, "99.900000": 4882432, "99.950000": 5668864, "99.990000": 6717440}}, "lat_ns": {"min": 258373, "max": 7206720, "mean": 437435.619507, "stddev": 385104.430705, "N": 11083}, "bw_min": 6504, "bw_max": 10453, "bw_agg": 98.706917, "bw_mean": 8750.5, "bw_dev": 1949.649627, "bw_samples": 4, "iops_min": 1626, "iops_max": 2613, "iops_mean": 2187.5, "iops_stddev": 487.273024, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.56, "sys_cpu": 25.76, "ctx": 11087, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.06316, "20": 0.018046, "50": 0.0, "100": 0.0, "250": 39.998195, "500": 57.231796, "750": 0.586484, "1000": 0.324822}, "latency_ms": {"2": 0.676712, "4": 0.794009, "10": 0.306776, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10784, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 1607, "in_queue": 1607, "util": 82.10484}]} 2026-04-20 15:02:15.821989 2026-04-20 14:46:24.505276 +343 8 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697356, "timestamp_ms": 1776697356645, "time": "Mon Apr 20 15:02:36 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 7, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6830424064, "io_kbytes": 6670336, "bw_bytes": 1048736997, "bw": 1024157, "iops": 500.07677, "runtime": 6513, "total_ios": 3257, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 523775, "max": 2677539253, "mean": 1635210.146454, "stddev": 46938493.14485, "N": 3257}, "clat_ns": {"min": 8170, "max": 5549625, "mean": 344474.03623, "stddev": 294466.544271, "N": 3257, "percentile": {"1.000000": 209920, "5.000000": 228352, "10.000000": 236544, "20.000000": 252928, "30.000000": 264192, "40.000000": 280576, "50.000000": 301056, "60.000000": 321536, "70.000000": 337920, "80.000000": 366592, "90.000000": 423936, "95.000000": 501760, "99.000000": 1351680, "99.500000": 2736128, "99.900000": 4292608, "99.950000": 5079040, "99.990000": 5537792}}, "lat_ns": {"min": 759048, "max": 2678111178, "mean": 1984747.028861, "stddev": 46943918.390018, "N": 3257}, "bw_min": 1180515, "bw_max": 1949696, "bw_agg": 100.0, "bw_mean": 1666776.75, "bw_dev": 335421.2756, "bw_samples": 4, "iops_min": 576, "iops_max": 952, "iops_mean": 813.75, "iops_stddev": 163.984501, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 6512, "usr_cpu": 5.159705, "sys_cpu": 11.670762, "ctx": 6528, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.030703, "20": 0.092109, "50": 0.061406, "100": 0.0, "250": 18.391158, "500": 76.266503, "750": 3.315935, "1000": 0.614062}, "latency_ms": {"2": 0.552656, "4": 0.460547, "10": 0.214922, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 6513, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2754, "in_queue": 2755, "util": 54.267634}]} 2026-04-20 15:02:26.683528 2026-04-20 14:46:24.505276 +344 8 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697372, "timestamp_ms": 1776697372124, "time": "Mon Apr 20 15:02:52 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14216593408, "io_kbytes": 13883392, "bw_bytes": 2842750131, "bw": 2776123, "iops": 1355.528894, "runtime": 5001, "total_ios": 6779, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 228222, "max": 5587255, "mean": 525326.407435, "stddev": 301191.4313, "N": 6779}, "clat_ns": {"min": 6340, "max": 13761525, "mean": 198219.67178, "stddev": 335916.336556, "N": 6779, "percentile": {"1.000000": 98816, "5.000000": 110080, "10.000000": 119296, "20.000000": 136192, "30.000000": 146432, "40.000000": 154624, "50.000000": 162816, "60.000000": 175104, "70.000000": 185344, "80.000000": 201728, "90.000000": 230400, "95.000000": 268288, "99.000000": 839680, "99.500000": 2473984, "99.900000": 4489216, "99.950000": 5865472, "99.990000": 13697024}}, "lat_ns": {"min": 469925, "max": 14374291, "mean": 727084.917834, "stddev": 479683.931201, "N": 6779}, "bw_min": 2123776, "bw_max": 3171228, "bw_agg": 100.0, "bw_mean": 2828776.25, "bw_dev": 478358.157934, "bw_samples": 4, "iops_min": 1037, "iops_max": 1548, "iops_mean": 1381.0, "iops_stddev": 233.382376, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.02, "sys_cpu": 34.3, "ctx": 13517, "majf": 0, "minf": 535, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.132763, "20": 0.073757, "50": 0.0, "100": 1.047352, "250": 92.063726, "500": 5.354772, "750": 0.295029, "1000": 0.118012}, "latency_ms": {"2": 0.368786, "4": 0.354035, "10": 0.177017, "20": 0.014751, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13027, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3182, "write_ticks": 0, "in_queue": 3182, "util": 80.989056}]} 2026-04-20 15:02:38.4866 2026-04-20 14:46:24.505276 +345 8 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697388, "timestamp_ms": 1776697388723, "time": "Mon Apr 20 15:03:08 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15818817536, "io_kbytes": 15448064, "bw_bytes": 3163130881, "bw": 3088995, "iops": 1508.29834, "runtime": 5001, "total_ios": 7543, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 185512, "max": 5760646, "mean": 478947.849795, "stddev": 177563.848549, "N": 7543}, "clat_ns": {"min": 5340, "max": 5580184, "mean": 169863.318043, "stddev": 182625.951757, "N": 7543, "percentile": {"1.000000": 97792, "5.000000": 108032, "10.000000": 116224, "20.000000": 132096, "30.000000": 140288, "40.000000": 148480, "50.000000": 154624, "60.000000": 162816, "70.000000": 173056, "80.000000": 183296, "90.000000": 197632, "95.000000": 224256, "99.000000": 354304, "99.500000": 700416, "99.900000": 3522560, "99.950000": 4227072, "99.990000": 5603328}}, "lat_ns": {"min": 467375, "max": 6731596, "mean": 651985.900835, "stddev": 279361.887765, "N": 7543}, "bw_min": 3197826, "bw_max": 3248128, "bw_agg": 100.0, "bw_mean": 3230349.5, "bw_dev": 22246.001026, "bw_samples": 4, "iops_min": 1561, "iops_max": 1586, "iops_mean": 1577.0, "iops_stddev": 10.984838, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 2.2, "sys_cpu": 43.5, "ctx": 15065, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.185603, "20": 0.053029, "50": 0.013257, "100": 1.33899, "250": 94.935702, "500": 2.82381, "750": 0.159088, "1000": 0.132573}, "latency_ms": {"2": 0.159088, "4": 0.119316, "10": 0.079544, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14856, "write_ios": 24, "read_merges": 0, "write_merges": 17, "read_ticks": 3394, "write_ticks": 14, "in_queue": 3413, "util": 75.990299}]} 2026-04-20 15:02:53.653123 2026-04-20 14:46:24.505276 +346 8 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697398, "timestamp_ms": 1776697398276, "time": "Mon Apr 20 15:03:18 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8715763712, "io_kbytes": 8511488, "bw_bytes": 1742804181, "bw": 1701957, "iops": 831.033793, "runtime": 5001, "total_ios": 4156, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 498055, "max": 6943958, "mean": 819885.474254, "stddev": 480054.934252, "N": 4156}, "clat_ns": {"min": 7150, "max": 5971569, "mean": 362292.993263, "stddev": 348278.342062, "N": 4156, "percentile": {"1.000000": 201728, "5.000000": 228352, "10.000000": 238592, "20.000000": 252928, "30.000000": 268288, "40.000000": 280576, "50.000000": 296960, "60.000000": 317440, "70.000000": 342016, "80.000000": 378880, "90.000000": 444416, "95.000000": 561152, "99.000000": 1925120, "99.500000": 3063808, "99.900000": 4489216, "99.950000": 5406720, "99.990000": 5996544}}, "lat_ns": {"min": 687947, "max": 9883827, "mean": 1187133.851781, "stddev": 669849.607184, "N": 4156}, "bw_min": 1458486, "bw_max": 1904783, "bw_agg": 97.247216, "bw_mean": 1655106.75, "bw_dev": 199464.637996, "bw_samples": 4, "iops_min": 712, "iops_max": 930, "iops_mean": 808.0, "iops_stddev": 97.447422, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.44, "sys_cpu": 21.4, "ctx": 8325, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.024062, "20": 0.120308, "50": 0.0, "100": 0.0, "250": 17.901829, "500": 75.216554, "750": 3.825794, "1000": 0.914341}, "latency_ms": {"2": 1.034649, "4": 0.697786, "10": 0.264678, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8114, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3460, "in_queue": 3460, "util": 78.971681}]} 2026-04-20 15:03:10.402191 2026-04-20 14:46:24.505276 +347 8 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697417, "timestamp_ms": 1776697417908, "time": "Mon Apr 20 15:03:37 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 8, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8422162432, "io_kbytes": 8224768, "bw_bytes": 1167636549, "bw": 1140270, "iops": 278.386247, "runtime": 7213, "total_ios": 2008, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1319933, "max": 2522599869, "mean": 3300303.630976, "stddev": 56263959.03055, "N": 2008}, "clat_ns": {"min": 5650, "max": 3760626, "mean": 263649.733068, "stddev": 189477.591324, "N": 2008, "percentile": {"1.000000": 154624, "5.000000": 171008, "10.000000": 177152, "20.000000": 189440, "30.000000": 203776, "40.000000": 220160, "50.000000": 234496, "60.000000": 248832, "70.000000": 268288, "80.000000": 288768, "90.000000": 342016, "95.000000": 403456, "99.000000": 921600, "99.500000": 1466368, "99.900000": 2867200, "99.950000": 2867200, "99.990000": 3751936}}, "lat_ns": {"min": 1492845, "max": 2523059593, "mean": 3571387.712151, "stddev": 56269257.081969, "N": 2008}, "bw_min": 1294336, "bw_max": 1923196, "bw_agg": 100.0, "bw_mean": 1643441.0, "bw_dev": 250537.927809, "bw_samples": 5, "iops_min": 316, "iops_max": 469, "iops_mean": 401.0, "iops_stddev": 61.081912, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 7213, "usr_cpu": 4.408707, "sys_cpu": 12.144739, "ctx": 8049, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.099602, "20": 0.149402, "50": 0.099602, "100": 0.099602, "250": 59.661355, "500": 37.400398, "750": 1.24502, "1000": 0.348606}, "latency_ms": {"2": 0.59761, "4": 0.298805, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8029, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3496, "in_queue": 3496, "util": 57.318436}]} 2026-04-20 15:03:27.035375 2026-04-20 14:46:24.505276 +348 8 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697434, "timestamp_ms": 1776697434755, "time": "Mon Apr 20 15:03:54 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15237906432, "io_kbytes": 14880768, "bw_bytes": 3046971892, "bw": 2975558, "iops": 726.454709, "runtime": 5001, "total_ios": 3633, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 734387, "max": 10774655, "mean": 1186077.41646, "stddev": 495650.087406, "N": 3633}, "clat_ns": {"min": 8650, "max": 4079640, "mean": 170744.5951, "stddev": 177059.136688, "N": 3633, "percentile": {"1.000000": 99840, "5.000000": 118272, "10.000000": 123392, "20.000000": 128512, "30.000000": 136192, "40.000000": 140288, "50.000000": 148480, "60.000000": 158720, "70.000000": 173056, "80.000000": 189440, "90.000000": 209920, "95.000000": 236544, "99.000000": 346112, "99.500000": 1036288, "99.900000": 3358720, "99.950000": 4014080, "99.990000": 4079616}}, "lat_ns": {"min": 846419, "max": 11040818, "mean": 1362344.835673, "stddev": 556732.140896, "N": 3633}, "bw_min": 2363392, "bw_max": 3133440, "bw_agg": 96.057194, "bw_mean": 2858238.5, "bw_dev": 350483.475975, "bw_samples": 4, "iops_min": 577, "iops_max": 765, "iops_mean": 697.75, "iops_stddev": 85.515593, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.78, "sys_cpu": 27.42, "ctx": 14420, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.055051, "20": 0.798238, "50": 0.110102, "100": 0.055051, "250": 95.127993, "500": 3.165428, "750": 0.137627, "1000": 0.027525}, "latency_ms": {"2": 0.30278, "4": 0.165153, "10": 0.055051, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14283, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3571, "write_ticks": 0, "in_queue": 3571, "util": 86.219924}]} 2026-04-20 15:03:39.925542 2026-04-20 14:46:24.505276 +349 8 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697451, "timestamp_ms": 1776697451843, "time": "Mon Apr 20 15:04:11 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14608760832, "io_kbytes": 14266368, "bw_bytes": 2921167932, "bw": 2852703, "iops": 696.460708, "runtime": 5001, "total_ios": 3483, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 754808, "max": 8750866, "mean": 1244577.43095, "stddev": 559347.323749, "N": 3483}, "clat_ns": {"min": 5540, "max": 3779447, "mean": 171402.322136, "stddev": 113614.076968, "N": 3483, "percentile": {"1.000000": 110080, "5.000000": 123392, "10.000000": 127488, "20.000000": 134144, "30.000000": 140288, "40.000000": 144384, "50.000000": 152576, "60.000000": 166912, "70.000000": 177152, "80.000000": 191488, "90.000000": 218112, "95.000000": 248832, "99.000000": 346112, "99.500000": 569344, "99.900000": 2023424, "99.950000": 2736128, "99.990000": 3784704}}, "lat_ns": {"min": 876898, "max": 8942848, "mean": 1421362.522251, "stddev": 599567.978225, "N": 3483}, "bw_min": 2279192, "bw_max": 3366912, "bw_agg": 96.158273, "bw_mean": 2743110.5, "bw_dev": 461694.83787, "bw_samples": 4, "iops_min": 556, "iops_max": 822, "iops_mean": 669.5, "iops_stddev": 112.917374, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.34, "sys_cpu": 29.34, "ctx": 13857, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.114844, "20": 0.373241, "50": 0.057422, "100": 0.0, "250": 94.516222, "500": 4.392765, "750": 0.172265, "1000": 0.057422}, "latency_ms": {"2": 0.200976, "4": 0.114844, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13846, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3544, "write_ticks": 0, "in_queue": 3544, "util": 85.235561}]} 2026-04-20 15:03:56.56733 2026-04-20 14:46:24.505276 +350 8 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1338MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697461, "timestamp_ms": 1776697461715, "time": "Mon Apr 20 15:04:21 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1338MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260420-150018Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9370075136, "io_kbytes": 9150464, "bw_bytes": 1872517013, "bw": 1828629, "iops": 446.442846, "runtime": 5004, "total_ios": 2234, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1250252, "max": 9527253, "mean": 1950443.774396, "stddev": 846114.461883, "N": 2234}, "clat_ns": {"min": 11910, "max": 3867068, "mean": 264740.893465, "stddev": 254270.026405, "N": 2234, "percentile": {"1.000000": 154624, "5.000000": 166912, "10.000000": 173056, "20.000000": 181248, "30.000000": 187392, "40.000000": 195584, "50.000000": 207872, "60.000000": 226304, "70.000000": 252928, "80.000000": 292864, "90.000000": 358400, "95.000000": 440320, "99.000000": 1253376, "99.500000": 2310144, "99.900000": 3620864, "99.950000": 3653632, "99.990000": 3883008}}, "lat_ns": {"min": 1411814, "max": 10400492, "mean": 2221166.223814, "stddev": 936073.732511, "N": 2234}, "bw_min": 1794048, "bw_max": 1955932, "bw_agg": 100.0, "bw_mean": 1858071.0, "bw_dev": 69902.948827, "bw_samples": 4, "iops_min": 438, "iops_max": 477, "iops_mean": 453.5, "iops_stddev": 16.822604, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5004, "usr_cpu": 2.53797, "sys_cpu": 21.482814, "ctx": 8952, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.089526, "50": 0.044763, "100": 0.0, "250": 68.487019, "500": 28.066249, "750": 1.611459, "1000": 0.313339}, "latency_ms": {"2": 0.716204, "4": 0.671441, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8765, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3760, "in_queue": 3759, "util": 88.924559}]} 2026-04-20 15:04:13.376695 2026-04-20 14:46:24.505276 +351 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 15:04:27.932774 2026-04-20 15:04:27.932777 +354 8 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 275MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260420-150435Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:04:40.269744 2026-04-20 14:46:24.505276 +355 8 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 275MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697514, "timestamp_ms": 1776697514732, "time": "Mon Apr 20 15:05:14 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 16, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "large_with_offset_testfile", "size": "275MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles", "offset_increment": "3k", "bs": "1M", "iodepth": "1", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5266997248, "io_kbytes": 5143552, "bw_bytes": 352260383, "bw": 344004, "iops": 335.94168, "runtime": 14952, "total_ios": 5023, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 151812, "max": 7211054549, "mean": 2297464.744376, "stddev": 101740829.749015, "N": 5023}, "clat_ns": {"min": 7410, "max": 24278977, "mean": 645518.306192, "stddev": 1147965.469104, "N": 5023, "percentile": {"1.000000": 8384, "5.000000": 9024, "10.000000": 9920, "20.000000": 321536, "30.000000": 362496, "40.000000": 423936, "50.000000": 485376, "60.000000": 528384, "70.000000": 585728, "80.000000": 684032, "90.000000": 921600, "95.000000": 1679360, "99.000000": 5406720, "99.500000": 6914048, "99.900000": 20578304, "99.950000": 21889024, "99.990000": 24248320}}, "lat_ns": {"min": 435514, "max": 7214924537, "mean": 2951099.737408, "stddev": 101791370.301828, "N": 5023}, "bw_min": 487960, "bw_max": 807936, "bw_agg": 100.0, "bw_mean": 642428.375, "bw_dev": 99423.040376, "bw_samples": 8, "iops_min": 476, "iops_max": 789, "iops_mean": 627.125, "iops_stddev": 97.192647, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 14951, "usr_cpu": 3.504782, "sys_cpu": 8.628185, "ctx": 8323, "majf": 0, "minf": 32, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 10.59128, "20": 5.415091, "50": 0.139359, "100": 0.0, "250": 0.318535, "500": 36.770854, "750": 30.838145, "1000": 7.326299}, "latency_ms": {"2": 4.300219, "4": 2.608003, "10": 1.493132, "20": 0.079634, "50": 0.119451, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 149, "write_ios": 10080, "read_merges": 0, "write_merges": 0, "read_ticks": 125, "write_ticks": 4643, "in_queue": 4768, "util": 29.817159}]} 2026-04-20 15:04:40.329381 2026-04-20 14:46:24.505276 +356 8 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 275MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260420-150435Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697514, "timestamp_ms": 1776697514889, "time": "Mon Apr 20 15:05:14 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 16, "job options": {"name": "seq_write_1M", "numjobs": "1", "filename": "large_testfile", "size": "275MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260420-150435Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260420-150435Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5304745984, "io_kbytes": 5180416, "bw_bytes": 361088148, "bw": 352625, "iops": 344.360493, "runtime": 14691, "total_ios": 5059, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 145622, "max": 27218706, "mean": 818290.559992, "stddev": 1307501.524918, "N": 5059}, "clat_ns": {"min": 6540, "max": 7207077949, "mean": 2059023.040324, "stddev": 101322484.56279, "N": 5059, "percentile": {"1.000000": 8096, "5.000000": 9024, "10.000000": 11072, "20.000000": 329728, "30.000000": 366592, "40.000000": 428032, "50.000000": 481280, "60.000000": 522240, "70.000000": 577536, "80.000000": 684032, "90.000000": 929792, "95.000000": 1646592, "99.000000": 4751360, "99.500000": 5996544, "99.900000": 10420224, "99.950000": 14876672, "99.990000": 7214202880}}, "lat_ns": {"min": 375474, "max": 7207257181, "mean": 2883494.559992, "stddev": 101321081.489826, "N": 5059}, "bw_min": 378501, "bw_max": 829440, "bw_agg": 100.0, "bw_mean": 647302.125, "bw_dev": 137080.828209, "bw_samples": 8, "iops_min": 369, "iops_max": 810, "iops_mean": 632.0, "iops_stddev": 134.067147, "iops_samples": 8}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 14690, "usr_cpu": 3.253914, "sys_cpu": 8.672566, "ctx": 8513, "majf": 0, "minf": 28, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 8.914805, "20": 2.925479, "50": 0.237201, "100": 0.019767, "250": 0.533702, "500": 41.45088, "750": 29.768729, "1000": 7.274165}, "latency_ms": {"2": 4.704487, "4": 2.569678, "10": 1.46274, "20": 0.098834, "50": 0.019767, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.019767}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 149, "write_ios": 10080, "read_merges": 0, "write_merges": 0, "read_ticks": 125, "write_ticks": 4643, "in_queue": 4768, "util": 29.75538}]} 2026-04-20 15:04:40.371955 2026-04-20 14:46:24.505276 +357 8 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 275MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260420-150435Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:20.531621 2026-04-20 14:46:24.505276 +358 8 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 275MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260420-150435Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:19.980854 2026-04-20 14:46:24.505276 +359 8 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 275MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260420-150435Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260420-150435Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:04.285178 2026-04-20 14:46:24.505276 +360 8 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 275MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:38.662635 2026-04-20 14:46:24.505276 +361 8 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 275MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260420-150435Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260420-150435Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:38.662086 2026-04-20 14:46:24.505276 +362 8 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 275MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260420-150435Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:40.028727 2026-04-20 14:46:24.505276 +363 8 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 275MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260420-150435Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:06:13.583584 2026-04-20 14:46:24.505276 +399 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:20:44' --until '2026-04-20 18:20:46' 0 Systemd errors records 2026-04-20 18:20:44.944615 2026-04-20 18:20:46.204231 +400 10 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 1024000 --length 64 {"pps": 2000, "datagram_size_bytes": 64, "bitrate_bps": 1024000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:47.874064 2026-04-20 18:15:48.846993 +364 8 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 275MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260420-150435Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260420-150435Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-20 15:05:55.19431 2026-04-20 14:46:24.505276 +365 8 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 275MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260420-150435Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697602, "timestamp_ms": 1776697602911, "time": "Mon Apr 20 15:06:42 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "rand_read_4k", "numjobs": "1", "filename": "small_testfile", "size": "275MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260420-150435Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260420-150435Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 132141056, "io_kbytes": 129044, "bw_bytes": 11010837, "bw": 10752, "iops": 2688.192651, "runtime": 12001, "total_ios": 32261, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79040, "max": 9166240, "mean": 106909.888937, "stddev": 88535.269456, "N": 32261}, "clat_ns": {"min": 4290, "max": 21721262, "mean": 251064.336629, "stddev": 737609.523739, "N": 32261, "percentile": {"1.000000": 47872, "5.000000": 51968, "10.000000": 55040, "20.000000": 63744, "30.000000": 70144, "40.000000": 77312, "50.000000": 80384, "60.000000": 85504, "70.000000": 104960, "80.000000": 128512, "90.000000": 187392, "95.000000": 1417216, "99.000000": 3850240, "99.500000": 4292608, "99.900000": 6193152, "99.950000": 7307264, "99.990000": 21364736}}, "lat_ns": {"min": 127052, "max": 21831363, "mean": 360201.207526, "stddev": 759515.428668, "N": 32261}, "bw_min": 3572, "bw_max": 22773, "bw_agg": 96.319362, "bw_mean": 10357.0, "bw_dev": 8153.8363, "bw_samples": 11, "iops_min": 893, "iops_max": 5693, "iops_mean": 2589.090909, "iops_stddev": 2038.380409, "iops_samples": 11}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 9.275, "sys_cpu": 33.0, "ctx": 32253, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.10849, "20": 0.074393, "50": 2.817644, "100": 65.152971, "250": 24.128204, "500": 1.118998, "750": 0.303772, "1000": 0.353368}, "latency_ms": {"2": 2.423979, "4": 2.848641, "10": 0.638542, "20": 0.018598, "50": 0.012399, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 31423, "write_ios": 11, "read_merges": 0, "write_merges": 0, "read_ticks": 4487, "write_ticks": 6, "in_queue": 4496, "util": 47.139742}]} 2026-04-20 15:06:14.933623 2026-04-20 14:46:24.505276 +366 8 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 15:06:48.607537 2026-04-20 15:06:48.607541 +367 8 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 15:04:32' --until '2026-04-20 15:06:46' 46 OOM records. 2026-04-20 15:04:32.749246 2026-04-20 15:06:46.063497 +368 8 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 15:04:32' --until '2026-04-20 15:06:46' 0 Systemd errors records 2026-04-20 15:04:32.749246 2026-04-20 15:06:46.063497 +369 8 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260420-150653Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697623, "timestamp_ms": 1776697623518, "time": "Mon Apr 20 15:07:03 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260420-150653Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 11064573952, "io_kbytes": 10805248, "bw_bytes": 2212472295, "bw": 2160617, "iops": 2109.978004, "runtime": 5001, "total_ios": 10552, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 138751, "max": 11797336, "mean": 173169.336619, "stddev": 176955.526712, "N": 10552}, "clat_ns": {"min": 6240, "max": 7557833, "mean": 285449.183472, "stddev": 194833.462783, "N": 10552, "percentile": {"1.000000": 197632, "5.000000": 220160, "10.000000": 226304, "20.000000": 236544, "30.000000": 242688, "40.000000": 250880, "50.000000": 259072, "60.000000": 268288, "70.000000": 284672, "80.000000": 301056, "90.000000": 342016, "95.000000": 387072, "99.000000": 749568, "99.500000": 921600, "99.900000": 3096576, "99.950000": 5341184, "99.990000": 6520832}}, "lat_ns": {"min": 340943, "max": 12501483, "mean": 461790.453469, "stddev": 269677.724579, "N": 10552}, "bw_min": 1626533, "bw_max": 2343640, "bw_agg": 98.910197, "bw_mean": 2137071.25, "bw_dev": 343739.628622, "bw_samples": 4, "iops_min": 1588, "iops_max": 2288, "iops_mean": 2086.5, "iops_stddev": 335.664019, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.5, "sys_cpu": 33.34, "ctx": 10642, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.037908, "20": 0.246399, "50": 0.0, "100": 0.0, "250": 38.466641, "500": 59.401061, "750": 0.833965, "1000": 0.597043}, "latency_ms": {"2": 0.236922, "4": 0.113723, "10": 0.066338, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 2, "write_ios": 10302, "read_merges": 0, "write_merges": 0, "read_ticks": 22, "write_ticks": 3225, "in_queue": 3247, "util": 63.73892}]} 2026-04-20 15:06:55.372402 2026-04-20 14:46:24.505276 +370 8 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260420-150653Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697633, "timestamp_ms": 1776697633272, "time": "Mon Apr 20 15:07:13 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260420-150653Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3878420480, "io_kbytes": 3787520, "bw_bytes": 775528990, "bw": 757352, "iops": 2958.408318, "runtime": 5001, "total_ios": 14795, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84891, "max": 570698058, "mean": 163764.48584, "stddev": 4691840.458167, "N": 14795}, "clat_ns": {"min": 4710, "max": 121167454, "mean": 161409.660764, "stddev": 1014181.902058, "N": 14795, "percentile": {"1.000000": 93696, "5.000000": 110080, "10.000000": 113152, "20.000000": 118272, "30.000000": 121344, "40.000000": 125440, "50.000000": 129536, "60.000000": 134144, "70.000000": 140288, "80.000000": 150528, "90.000000": 189440, "95.000000": 250880, "99.000000": 374784, "99.500000": 716800, "99.900000": 3915776, "99.950000": 4358144, "99.990000": 8847360}}, "lat_ns": {"min": 207332, "max": 571412765, "mean": 328064.794525, "stddev": 4804629.016406, "N": 14795}, "bw_min": 200704, "bw_max": 965120, "bw_agg": 93.096408, "bw_mean": 705068.25, "bw_dev": 342840.333656, "bw_samples": 4, "iops_min": 784, "iops_max": 3770, "iops_mean": 2754.0, "iops_stddev": 1339.124839, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 11.8, "sys_cpu": 32.36, "ctx": 14825, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.628591, "20": 0.229807, "50": 0.0, "100": 0.277121, "250": 93.849273, "500": 4.359581, "750": 0.182494, "1000": 0.101386}, "latency_ms": {"2": 0.162217, "4": 0.135181, "10": 0.06759, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 14352, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 3927, "in_queue": 4618, "util": 79.871563}]} 2026-04-20 15:07:05.412803 2026-04-20 14:46:24.505276 +371 8 loader /usr/bin/fio --name seq_write_64k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260420-150653Z/testfiles --bs 64k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697643, "timestamp_ms": 1776697643126, "time": "Mon Apr 20 15:07:23 2026", "jobs": [{"jobname": "seq_write_64k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_64k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260420-150653Z/testfiles", "bs": "64k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/write/bs_64k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1268056064, "io_kbytes": 1238336, "bw_bytes": 253560500, "bw": 247617, "iops": 3869.026195, "runtime": 5001, "total_ios": 19349, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 89691, "max": 8324521, "mean": 108887.206419, "stddev": 87584.208965, "N": 19349}, "clat_ns": {"min": 4980, "max": 7957028, "mean": 137318.414027, "stddev": 285998.150423, "N": 19349, "percentile": {"1.000000": 72192, "5.000000": 75264, "10.000000": 80384, "20.000000": 84480, "30.000000": 88576, "40.000000": 90624, "50.000000": 93696, "60.000000": 98816, "70.000000": 109056, "80.000000": 140288, "90.000000": 183296, "95.000000": 216064, "99.000000": 741376, "99.500000": 2072576, "99.900000": 4685824, "99.950000": 5406720, "99.990000": 6979584}}, "lat_ns": {"min": 158591, "max": 8340382, "mean": 248736.948318, "stddev": 303005.961127, "N": 19349}, "bw_min": 217574, "bw_max": 312256, "bw_agg": 100.0, "bw_mean": 265281.25, "bw_dev": 51021.655529, "bw_samples": 4, "iops_min": 3399, "iops_max": 4879, "iops_mean": 4144.75, "iops_stddev": 797.526332, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.52, "sys_cpu": 41.58, "ctx": 19345, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.304925, "20": 0.082692, "50": 0.010336, "100": 61.693111, "250": 34.363533, "500": 2.346374, "750": 0.206729, "1000": 0.129206}, "latency_ms": {"2": 0.351439, "4": 0.361776, "10": 0.149879, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 18771, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2584, "in_queue": 2585, "util": 73.253012}]} 2026-04-20 15:07:14.804912 2026-04-20 14:46:24.505276 +372 8 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --size 100MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260420-150653Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776697653, "timestamp_ms": 1776697653499, "time": "Mon Apr 20 15:07:33 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_read_1M", "numjobs": "1", "size": "100MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260420-150653Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260420-150653Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 13970178048, "io_kbytes": 13642752, "bw_bytes": 2792918442, "bw": 2727459, "iops": 2663.534586, "runtime": 5002, "total_ios": 13323, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 131492, "max": 7925398, "mean": 149617.576372, "stddev": 82150.568798, "N": 13323}, "clat_ns": {"min": 6550, "max": 8131979, "mean": 214424.564963, "stddev": 213200.214014, "N": 13323, "percentile": {"1.000000": 140288, "5.000000": 158720, "10.000000": 164864, "20.000000": 173056, "30.000000": 179200, "40.000000": 185344, "50.000000": 191488, "60.000000": 197632, "70.000000": 203776, "80.000000": 216064, "90.000000": 246784, "95.000000": 292864, "99.000000": 544768, "99.500000": 1220608, "99.900000": 3620864, "99.950000": 4423680, "99.990000": 7438336}}, "lat_ns": {"min": 270572, "max": 8596684, "mean": 366398.000225, "stddev": 233078.725103, "N": 13323}, "bw_min": 2434685, "bw_max": 2938880, "bw_agg": 100.0, "bw_mean": 2791583.25, "bw_dev": 239329.988275, "bw_samples": 4, "iops_min": 2377, "iops_max": 2870, "iops_mean": 2726.0, "iops_stddev": 234.029913, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 4.959008, "sys_cpu": 51.069786, "ctx": 13343, "majf": 0, "minf": 277, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.052541, "20": 0.195151, "50": 0.0, "100": 0.01, "250": 90.054792, "500": 8.646701, "750": 0.240186, "1000": 0.157622}, "latency_ms": {"2": 0.375291, "4": 0.195151, "10": 0.075058, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13115, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3235, "write_ticks": 0, "in_queue": 3234, "util": 82.124037}]} 2026-04-20 15:07:24.916949 2026-04-20 14:46:24.505276 +373 9 loader /usr/bin/iperf3 --time 40 --port 5201 --client 10.5.0.13 --json --version4 {"client_returncode": 1} 2026-04-20 18:19:00.091097 2026-04-20 18:15:48.846993 +374 9 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:19:03.115008 2026-04-20 18:19:03.115012 +375 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:18:59' --until '2026-04-20 18:19:01' 0 OOM records. 2026-04-20 18:18:59.500166 2026-04-20 18:19:01.553475 +376 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:18:59' --until '2026-04-20 18:19:01' 0 Systemd errors records 2026-04-20 18:18:59.500166 2026-04-20 18:19:01.553475 +377 9 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 1024000 --length 64 {"pps": 2000, "datagram_size_bytes": 64, "bitrate_bps": 1024000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:09.144841 2026-04-20 18:15:48.846993 +378 9 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 8192000 --length 512 {"pps": 2000, "datagram_size_bytes": 512, "bitrate_bps": 8192000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:10.610788 2026-04-20 18:15:48.846993 +379 9 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 22400000 --length 1400 {"pps": 2000, "datagram_size_bytes": 1400, "bitrate_bps": 22400000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:12.069329 2026-04-20 18:15:48.846993 +380 9 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 2048000 --length 64 {"pps": 4000, "datagram_size_bytes": 64, "bitrate_bps": 2048000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:13.744388 2026-04-20 18:15:48.846993 +381 9 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 16384000 --length 512 {"pps": 4000, "datagram_size_bytes": 512, "bitrate_bps": 16384000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:15.213399 2026-04-20 18:15:48.846993 +382 9 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 44800000 --length 1400 {"pps": 4000, "datagram_size_bytes": 1400, "bitrate_bps": 44800000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:16.744513 2026-04-20 18:15:48.846993 +383 9 loader /usr/bin/iperf3 --time 3 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 3072000 --length 64 {"pps": 6000, "datagram_size_bytes": 64, "bitrate_bps": 3072000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:18.202113 2026-04-20 18:15:48.846993 +384 9 loader /usr/bin/iperf3 --time 3 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 24576000 --length 512 {"pps": 6000, "datagram_size_bytes": 512, "bitrate_bps": 24576000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:20.101126 2026-04-20 18:15:48.846993 +385 9 loader /usr/bin/iperf3 --time 4 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 67200000 --length 1400 {"pps": 6000, "datagram_size_bytes": 1400, "bitrate_bps": 67200000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:21.554365 2026-04-20 18:15:48.846993 +386 9 loader /usr/bin/iperf3 --time 6 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 4096000 --length 64 {"pps": 8000, "datagram_size_bytes": 64, "bitrate_bps": 4096000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:23.1043 2026-04-20 18:15:48.846993 +387 9 loader /usr/bin/iperf3 --time 10 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 32768000 --length 512 {"pps": 8000, "datagram_size_bytes": 512, "bitrate_bps": 32768000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:24.558492 2026-04-20 18:15:48.846993 +388 9 loader /usr/bin/iperf3 --time 21 --port 5201 --client 10.5.0.13 --interval 1 --udp --json --version4 --bitrate 89600000 --length 1400 {"pps": 8000, "datagram_size_bytes": 1400, "bitrate_bps": 89600000, "client_returncode": 1, "server_returncode": 0} 2026-04-20 18:19:26.026353 2026-04-20 18:15:48.846993 +389 9 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:19:29.24551 2026-04-20 18:19:29.245514 +390 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:19:08' --until '2026-04-20 18:19:27' 0 OOM records. 2026-04-20 18:19:08.383967 2026-04-20 18:19:27.508273 +391 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:19:08' --until '2026-04-20 18:19:27' 0 Systemd errors records 2026-04-20 18:19:08.383967 2026-04-20 18:19:27.508273 +392 9 loader /usr/bin/stress-ng --timeout 37 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 37 --port 5201 --client 10.5.0.13 --interval 1 --json --version4 {"stress_ng_returncode": 0, "iperf3_client_returncode": 1, "iperf3_server_returncode": 0} 2026-04-20 18:19:35.092569 2026-04-20 18:15:48.846993 +393 9 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:20:16.575215 2026-04-20 18:20:16.575219 +394 9 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:19:33' --until '2026-04-20 18:20:14' 0 OOM records. 2026-04-20 18:19:33.981118 2026-04-20 18:20:14.591549 +395 9 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:19:33' --until '2026-04-20 18:20:14' 0 Systemd errors records 2026-04-20 18:19:33.981118 2026-04-20 18:20:14.591549 +401 10 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 8192000 --length 512 {"pps": 2000, "datagram_size_bytes": 512, "bitrate_bps": 8192000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:49.07171 2026-04-20 18:15:48.846993 +402 10 loader /usr/bin/iperf3 --time 1 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 22400000 --length 1400 {"pps": 2000, "datagram_size_bytes": 1400, "bitrate_bps": 22400000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:50.250328 2026-04-20 18:15:48.846993 +403 10 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 2048000 --length 64 {"pps": 4000, "datagram_size_bytes": 64, "bitrate_bps": 2048000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:51.440175 2026-04-20 18:15:48.846993 +404 10 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 16384000 --length 512 {"pps": 4000, "datagram_size_bytes": 512, "bitrate_bps": 16384000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:52.596047 2026-04-20 18:15:48.846993 +405 10 loader /usr/bin/iperf3 --time 2 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 44800000 --length 1400 {"pps": 4000, "datagram_size_bytes": 1400, "bitrate_bps": 44800000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:53.757656 2026-04-20 18:15:48.846993 +406 10 loader /usr/bin/iperf3 --time 3 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 3072000 --length 64 {"pps": 6000, "datagram_size_bytes": 64, "bitrate_bps": 3072000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:54.919367 2026-04-20 18:15:48.846993 +407 10 loader /usr/bin/iperf3 --time 4 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 24576000 --length 512 {"pps": 6000, "datagram_size_bytes": 512, "bitrate_bps": 24576000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:56.089957 2026-04-20 18:15:48.846993 +408 10 loader /usr/bin/iperf3 --time 5 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 67200000 --length 1400 {"pps": 6000, "datagram_size_bytes": 1400, "bitrate_bps": 67200000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:57.250991 2026-04-20 18:15:48.846993 +409 10 loader /usr/bin/iperf3 --time 7 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 4096000 --length 64 {"pps": 8000, "datagram_size_bytes": 64, "bitrate_bps": 4096000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:58.415089 2026-04-20 18:15:48.846993 +410 10 loader /usr/bin/iperf3 --time 12 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 32768000 --length 512 {"pps": 8000, "datagram_size_bytes": 512, "bitrate_bps": 32768000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:20:59.57958 2026-04-20 18:15:48.846993 +411 10 loader /usr/bin/iperf3 --time 25 --port 5201 --client 10.5.0.10 --interval 1 --udp --json --version4 --bitrate 89600000 --length 1400 {"pps": 8000, "datagram_size_bytes": 1400, "bitrate_bps": 89600000, "client_returncode": 1, "server_returncode": 1} 2026-04-20 18:21:00.736061 2026-04-20 18:15:48.846993 +412 10 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-20 18:21:02.214093 2026-04-20 18:21:02.214097 +413 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:20:47' --until '2026-04-20 18:21:01' 1 OOM records. 2026-04-20 18:20:47.757826 2026-04-20 18:21:01.898821 +414 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:20:47' --until '2026-04-20 18:21:01' 0 Systemd errors records 2026-04-20 18:20:47.757826 2026-04-20 18:21:01.898821 +415 10 loader /usr/bin/stress-ng --timeout 37 --cpu-method all --vm-method all --sock 0 --netdev 0 --udp-flood 0 --syscall-method all --verify --metrics --maximize --seed 1592594996 & /usr/bin/iperf3 --time 37 --port 5201 --client 10.5.0.10 --interval 1 --json --version4 {"stress_ng_returncode": 0, "iperf3_client_returncode": 1, "iperf3_server_returncode": 1} 2026-04-20 18:21:03.590281 2026-04-20 18:15:48.846993 +416 10 observer sudo /usr/bin/systemctl --failed --no-legend [] Failed systemd services. 2026-04-20 18:21:42.634912 2026-04-20 18:21:42.634914 +417 10 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:21:03' --until '2026-04-20 18:21:42' 1 OOM records. 2026-04-20 18:21:03.38468 2026-04-20 18:21:42.38448 +418 10 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:21:03' --until '2026-04-20 18:21:42' 0 Systemd errors records 2026-04-20 18:21:03.38468 2026-04-20 18:21:42.38448 +419 11 loader systemd-analyze time {"firmware_time": -1.0, "loader_time": -1.0, "initrd_time": 10.479, "kernel_time": 2.38, "userspace_time": 80.475, "total_time": 93.33500000000001} 2026-04-20 18:15:48.846985 2026-04-20 18:15:48.846993 +420 11 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:22:38.140983 2026-04-20 18:22:38.140986 +421 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:22:35' --until '2026-04-20 18:22:36' 0 OOM records. 2026-04-20 18:22:35.362945 2026-04-20 18:22:36.553889 +422 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:22:35' --until '2026-04-20 18:22:36' 0 Systemd errors records 2026-04-20 18:22:35.362945 2026-04-20 18:22:36.553889 +423 11 loader systemd-analyze critical-chain [{"service_name": "systemd-vconsole-setup.service", "slow_time_s": 2.029}, {"service_name": "cloud-init-local.service", "slow_time_s": 9.58}, {"service_name": "wicked.service", "slow_time_s": 10.676}, {"service_name": "cloud-config.service", "slow_time_s": 12.08}, {"service_name": "cloud-init.service", "slow_time_s": 17.885}] 2026-04-20 18:15:48.846985 2026-04-20 18:15:48.846993 +424 11 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-20 18:22:46.12986 2026-04-20 18:22:46.129864 +425 11 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-20 18:22:39' --until '2026-04-20 18:22:44' 0 OOM records. 2026-04-20 18:22:39.764148 2026-04-20 18:22:44.16885 +426 11 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-20 18:22:39' --until '2026-04-20 18:22:44' 0 Systemd errors records 2026-04-20 18:22:39.764148 2026-04-20 18:22:44.16885 +434 11 loader /usr/bin/perf bench --format default --repeat 3 sched messaging --thread [{"benchmark": "sched/messaging", "total_time": 2.142}] 2026-04-20 18:58:37.051751 2026-04-20 18:58:40.170219 +435 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798776, "timestamp_ms": 1776798776068, "time": "Tue Apr 21 19:12:56 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9915904, "io_kbytes": 9683, "bw_bytes": 1982784, "bw": 1936, "iops": 3872.625475, "runtime": 5001, "total_ios": 19367, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84631, "max": 9711316, "mean": 148581.244695, "stddev": 279896.197282, "N": 19367}, "clat_ns": {"min": 4170, "max": 5512012, "mean": 98164.338462, "stddev": 117773.681296, "N": 19367, "percentile": {"1.000000": 4832, "5.000000": 5024, "10.000000": 6688, "20.000000": 73216, "30.000000": 80384, "40.000000": 89600, "50.000000": 95744, "60.000000": 100864, "70.000000": 107008, "80.000000": 117248, "90.000000": 140288, "95.000000": 175104, "99.000000": 248832, "99.500000": 346112, "99.900000": 1761280, "99.950000": 3227648, "99.990000": 4358144}}, "lat_ns": {"min": 147261, "max": 9727116, "mean": 249002.277689, "stddev": 292301.152789, "N": 19367}, "bw_min": 1631, "bw_max": 2316, "bw_agg": 100.0, "bw_mean": 2047.0, "bw_dev": 292.821903, "bw_samples": 4, "iops_min": 3263, "iops_max": 4632, "iops_mean": 4094.5, "iops_stddev": 585.279705, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.44, "sys_cpu": 48.58, "ctx": 19380, "majf": 0, "minf": 23, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.423194, "20": 0.258171, "50": 0.01549, "100": 45.350338, "250": 40.971756, "500": 0.666081, "750": 0.108432, "1000": 0.056798}, "latency_ms": {"2": 0.061961, "4": 0.072288, "10": 0.01549, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 18812, "read_merges": 0, "write_merges": 2352, "read_ticks": 0, "write_ticks": 2621, "in_queue": 2621, "util": 79.919598}]} 2026-04-21 19:12:46.818875 2026-04-21 19:10:15.083464 +436 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798802, "timestamp_ms": 1776798802629, "time": "Tue Apr 21 19:13:22 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 11666432, "io_kbytes": 11393, "bw_bytes": 2332819, "bw": 2278, "iops": 4556.288742, "runtime": 5001, "total_ios": 22786, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78600, "max": 28504592, "mean": 97601.923769, "stddev": 226191.636714, "N": 22786}, "clat_ns": {"min": 4920, "max": 46927638, "mean": 111093.212499, "stddev": 398002.545882, "N": 22786, "percentile": {"1.000000": 51968, "5.000000": 55040, "10.000000": 58624, "20.000000": 62720, "30.000000": 67072, "40.000000": 74240, "50.000000": 82432, "60.000000": 87552, "70.000000": 90624, "80.000000": 97792, "90.000000": 122368, "95.000000": 158720, "99.000000": 995328, "99.500000": 1728512, "99.900000": 4112384, "99.950000": 4685824, "99.990000": 6914048}}, "lat_ns": {"min": 132041, "max": 47064168, "mean": 211012.702449, "stddev": 460800.058896, "N": 22786}, "bw_min": 856, "bw_max": 2741, "bw_agg": 95.472473, "bw_mean": 2175.25, "bw_dev": 891.894005, "bw_samples": 4, "iops_min": 1712, "iops_max": 5482, "iops_mean": 4350.75, "iops_stddev": 1783.983067, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.84, "sys_cpu": 51.42, "ctx": 22726, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.074607, "20": 0.087773, "50": 0.215044, "100": 81.769508, "250": 16.101992, "500": 0.49153, "750": 0.136048, "1000": 0.127271}, "latency_ms": {"2": 0.583692, "4": 0.302818, "10": 0.105328, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 21641, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2857, "write_ticks": 0, "in_queue": 2857, "util": 70.227133}]} 2026-04-21 19:12:57.687176 2026-04-21 19:10:15.083464 +427 11 loader sudo FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/ctx-clock {"title": "2026-04-20-1823", "last_modified": "2026-04-20 18:23:43", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"2026-04-20 18:23": {"identifier": "2026-04-20 18:23", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:23:25", "client_version": "10.8.4", "data": {"compiler-configuration": "--build=x86_64-suse-linux --disable-libcc1 --disable-libssp --disable-libstdcxx-pch --disable-libvtv --disable-plugin --disable-werror --enable-checking=release --enable-gnu-indirect-function --enable-languages=c,c++,objc,fortran,obj-c++,ada,go --enable-libstdcxx-allocator=new --enable-linux-futex --enable-multilib --enable-offload-targets=hsa,nvptx-none, --enable-ssp --enable-version-specific-runtime-libs --host=x86_64-suse-linux --mandir=/usr/share/man --with-arch-32=x86-64 --with-gcc-major-version-only --with-slibdir=/lib64 --with-tune=generic --without-cuda-driver --without-system-libunwind", "cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"e73e6187dbf9f015fb568fe82670e0c6cdb6cacf": {"identifier": "pts/ctx-clock-1.0.0", "title": "ctx_clock", "scale": "Clocks", "proportion": "LIB", "display_format": "BAR_GRAPH", "results": {"2026-04-20 18:23": {"test_run_times": [5.54, 0.14, 0.13], "details": {"compiler-options": {"compiler-type": "CC", "compiler": "gcc", "compiler-options": ""}, "error": "The test quit with a non-zero exit status. The test quit with a non-zero exit status. The test quit with a non-zero exit status."}}}}}} 2026-04-20 18:23:00.900292 2026-04-20 18:23:54.452813 +428 11 loader echo 4 | FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/appleseed {"title": "2026-04-20-1823", "last_modified": "2026-04-20 18:23:43", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"2026-04-20 18:23": {"identifier": "2026-04-20 18:23", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:23:25", "client_version": "10.8.4", "data": {"compiler-configuration": "--build=x86_64-suse-linux --disable-libcc1 --disable-libssp --disable-libstdcxx-pch --disable-libvtv --disable-plugin --disable-werror --enable-checking=release --enable-gnu-indirect-function --enable-languages=c,c++,objc,fortran,obj-c++,ada,go --enable-libstdcxx-allocator=new --enable-linux-futex --enable-multilib --enable-offload-targets=hsa,nvptx-none, --enable-ssp --enable-version-specific-runtime-libs --host=x86_64-suse-linux --mandir=/usr/share/man --with-arch-32=x86-64 --with-gcc-major-version-only --with-slibdir=/lib64 --with-tune=generic --without-cuda-driver --without-system-libunwind", "cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"e73e6187dbf9f015fb568fe82670e0c6cdb6cacf": {"identifier": "pts/ctx-clock-1.0.0", "title": "ctx_clock", "scale": "Clocks", "proportion": "LIB", "display_format": "BAR_GRAPH", "results": {"2026-04-20 18:23": {"test_run_times": [5.54, 0.14, 0.13], "details": {"compiler-options": {"compiler-type": "CC", "compiler": "gcc", "compiler-options": ""}, "error": "The test quit with a non-zero exit status. The test quit with a non-zero exit status. The test quit with a non-zero exit status."}}}}}} 2026-04-20 18:23:54.456756 2026-04-20 18:24:16.830486 +429 11 loader sudo FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/network-loopback {"title": "2026-04-20-1824", "last_modified": "2026-04-20 18:31:45", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"Intel 82540EM": {"identifier": "Intel 82540EM", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:24:39", "client_version": "10.8.4", "data": {"cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"a98105add2d3666b3f6e7cae7d19bf7ce82711ac": {"identifier": "pts/network-loopback-1.0.3", "title": "Loopback TCP Network Performance", "description": "Time To Transfer 10GB Via Loopback", "scale": "Seconds", "proportion": "LIB", "display_format": "BAR_GRAPH", "results": {"Intel 82540EM": {"value": 137.575, "raw_values": [126.695, 148.048, 137.981], "test_run_times": [126.67, 148.04, 137.97]}}}}} 2026-04-20 18:24:16.833691 2026-04-20 18:31:56.178856 +430 11 loader sudo FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/hdparm-read {"title": "2026-04-20-1832", "last_modified": "2026-04-20 18:33:01", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"QEMU HDD": {"identifier": "QEMU HDD", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:32:23", "client_version": "10.8.4", "data": {"disk-scheduler": "BFQ", "disk-mount-options": "attr2,inode64,logbsize=32k,logbufs=8,noquota,relatime,rw", "disk-details": "Block Size: 4096", "cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"4937efd3bbadcc20ba3f8565d001329d9d4a4681": {"identifier": "pts/hdparm-read-1.0.0", "title": "hdparm Timed Disk Reads", "arguments": "-t /dev/sda", "description": "Disk To Read: /dev/sda", "scale": "MB/s", "proportion": "HIB", "display_format": "BAR_GRAPH", "results": {"QEMU HDD": {"value": 502.5, "raw_values": [340.52, 533.31, 633.67], "test_run_times": [11.69, 6.95, 7.06]}}}}} 2026-04-20 18:31:56.182245 2026-04-20 18:33:20.141391 +431 11 loader sudo FORCE_TIMES_TO_RUN=3 phoronix-test-suite batch-run pts/tinymembench {"title": "2026-04-20-1833", "last_modified": "2026-04-20 18:54:55", "description": "QEMU testing on openSUSE Leap 15.6 via the Phoronix Test Suite.", "systems": {"1 x 3 GB RAM QEMU": {"identifier": "1 x 3 GB RAM QEMU", "hardware": {"Processor": "QEMU Virtual 2.5+ (1 Core)", "Motherboard": "QEMU Ubuntu 24.04 PC v2 (i440FX + PIIX arch_caps fix 1996) (1.16.3-debian-1.16.3-2 BIOS)", "Chipset": "Intel 440FX 82441FX PMC", "Memory": "1 x 3 GB RAM QEMU", "Disk": "11GB QEMU HDD", "Graphics": "bochs-drmdrmfb", "Monitor": "QEMU Monitor", "Network": "Intel 82540EM"}, "software": {"OS": "openSUSE Leap 15.6", "Kernel": "6.4.0-150600.23.92-default (x86_64)", "Compiler": "GCC 7.5.0", "File-System": "xfs", "Screen Resolution": "1280x800", "System Layer": "QEMU"}, "user": "root", "timestamp": "2026-04-20 18:33:43", "client_version": "10.8.4", "data": {"compiler-configuration": "--build=x86_64-suse-linux --disable-libcc1 --disable-libssp --disable-libstdcxx-pch --disable-libvtv --disable-plugin --disable-werror --enable-checking=release --enable-gnu-indirect-function --enable-languages=c,c++,objc,fortran,obj-c++,ada,go --enable-libstdcxx-allocator=new --enable-linux-futex --enable-multilib --enable-offload-targets=hsa,nvptx-none, --enable-ssp --enable-version-specific-runtime-libs --host=x86_64-suse-linux --mandir=/usr/share/man --with-arch-32=x86-64 --with-gcc-major-version-only --with-slibdir=/lib64 --with-tune=generic --without-cuda-driver --without-system-libunwind", "cpu-microcode": "0x1000065", "kernel-extra-details": "Transparent Huge Pages: always", "security": "gather_data_sampling: Not affected + indirect_target_selection: Not affected + itlb_multihit: Not affected + l1tf: Not affected + mds: Not affected + meltdown: Not affected + mmio_stale_data: Not affected + reg_file_data_sampling: Not affected + retbleed: Not affected + spec_rstack_overflow: Not affected + spec_store_bypass: Not affected + spectre_v1: Mitigation of usercopy/swapgs barriers and __user pointer sanitization + spectre_v2: Mitigation of Retpolines; STIBP: disabled; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected + srbds: Not affected + tsa: Not affected + tsx_async_abort: Not affected + vmscape: Not affected"}}}, "results": {"5bccbe11ecc086473c1c13ca929cb4faa318271e": {"identifier": "pts/tinymembench-1.0.2", "title": "Tinymembench", "app_version": "2018-05-28", "description": "Standard Memcpy", "scale": "MB/s", "proportion": "HIB", "display_format": "BAR_GRAPH", "results": {"1 x 3 GB RAM QEMU": {"value": 3169.9, "raw_values": [3172.8, 3155.4, 3181.5], "test_run_times": [425.01, 415.6, 418.32], "details": {"compiler-options": {"compiler-type": "CC", "compiler": "gcc", "compiler-options": "-O2 -lm"}}}}}, "b76d6cf01f46e1ebcef55c3acab75a3188331bb6": {"identifier": "pts/tinymembench-1.0.2", "title": "Tinymembench", "app_version": "2018-05-28", "description": "Standard Memset", "scale": "MB/s", "proportion": "HIB", "display_format": "BAR_GRAPH", "results": {"1 x 3 GB RAM QEMU": {"value": 18310.5, "raw_values": [18272.8, 18332.4, 18326.3], "test_run_times": [425.01, 415.6, 418.32], "details": {"compiler-options": {"compiler-type": "CC", "compiler": "gcc", "compiler-options": "-O2 -lm"}}}}}}} 2026-04-20 18:33:20.145106 2026-04-20 18:55:08.633801 +432 11 loader /usr/bin/perf bench --format default --repeat 3 syscall all [{"benchmark": "syscall/basic", "total_time": 3.636, "usecs_per_op": 0.363681, "ops_per_sec": 2749663}, {"benchmark": "syscall/getpgid", "total_time": 2.942, "usecs_per_op": 0.294235, "ops_per_sec": 3398646}, {"benchmark": "syscall/fork", "total_time": 51.123, "usecs_per_op": 5112.3101, "ops_per_sec": 195}, {"benchmark": "syscall/execve", "total_time": 144.663, "usecs_per_op": 14466.3368, "ops_per_sec": 69}] 2026-04-20 18:55:08.637817 2026-04-20 18:58:31.566977 +433 11 loader /usr/bin/perf bench --format default --repeat 3 sched messaging [{"benchmark": "sched/messaging", "total_time": 3.89}] 2026-04-20 18:58:31.571617 2026-04-20 18:58:37.047651 +437 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798831, "timestamp_ms": 1776798831274, "time": "Tue Apr 21 19:13:51 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12496896, "io_kbytes": 12204, "bw_bytes": 2498879, "bw": 2440, "iops": 4880.623875, "runtime": 5001, "total_ios": 24408, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82191, "max": 10443360, "mean": 96993.147247, "stddev": 90381.746204, "N": 24408}, "clat_ns": {"min": 5260, "max": 5838083, "mean": 96666.99537, "stddev": 186003.974101, "N": 24408, "percentile": {"1.000000": 51968, "5.000000": 54528, "10.000000": 56576, "20.000000": 62720, "30.000000": 67072, "40.000000": 75264, "50.000000": 83456, "60.000000": 86528, "70.000000": 89600, "80.000000": 94720, "90.000000": 109056, "95.000000": 138240, "99.000000": 329728, "99.500000": 1171456, "99.900000": 3358720, "99.950000": 4292608, "99.990000": 5734400}}, "lat_ns": {"min": 134331, "max": 10463830, "mean": 195633.644297, "stddev": 208885.058915, "N": 24408}, "bw_min": 2401, "bw_max": 2690, "bw_agg": 100.0, "bw_mean": 2574.75, "bw_dev": 135.726134, "bw_samples": 4, "iops_min": 4802, "iops_max": 5380, "iops_mean": 5149.75, "iops_stddev": 271.698822, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 16.46, "sys_cpu": 51.62, "ctx": 24336, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.503933, "20": 0.028679, "50": 0.225336, "100": 85.099148, "250": 12.958866, "500": 0.471157, "750": 0.08194, "1000": 0.086037}, "latency_ms": {"2": 0.331858, "4": 0.147493, "10": 0.065552, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23967, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3057, "write_ticks": 0, "in_queue": 3057, "util": 82.028215}]} 2026-04-21 19:13:24.425273 2026-04-21 19:10:15.083464 +438 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798843, "timestamp_ms": 1776798843902, "time": "Tue Apr 21 19:14:03 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 1687552, "io_kbytes": 1648, "bw_bytes": 337442, "bw": 329, "iops": 659.068186, "runtime": 5001, "total_ios": 3296, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 132751, "max": 76167834, "mean": 1485116.770328, "stddev": 1908204.251053, "N": 3296}, "clat_ns": {"min": 5290, "max": 2596135, "mean": 10948.707221, "stddev": 48855.873338, "N": 3296, "percentile": {"1.000000": 7584, "5.000000": 7840, "10.000000": 7904, "20.000000": 8096, "30.000000": 8256, "40.000000": 8384, "50.000000": 8512, "60.000000": 8640, "70.000000": 8768, "80.000000": 8896, "90.000000": 9152, "95.000000": 10048, "99.000000": 21632, "99.500000": 177152, "99.900000": 329728, "99.950000": 419840, "99.990000": 2605056}}, "lat_ns": {"min": 271162, "max": 76205424, "mean": 1501738.38835, "stddev": 1908757.744876, "N": 3296}, "bw_min": 328, "bw_max": 361, "bw_agg": 100.0, "bw_mean": 351.5, "bw_dev": 15.84298, "bw_samples": 4, "iops_min": 656, "iops_max": 723, "iops_mean": 703.75, "iops_stddev": 32.180481, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.6, "sys_cpu": 17.06, "ctx": 3339, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 94.751214, "20": 3.762136, "50": 0.788835, "100": 0.0, "250": 0.455097, "500": 0.212379, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.03034, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 30, "write_ios": 3256, "read_merges": 0, "write_merges": 5680, "read_ticks": 14, "write_ticks": 848, "in_queue": 943, "util": 21.967411}]} 2026-04-21 19:13:53.008733 2026-04-21 19:10:15.083464 +439 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798856, "timestamp_ms": 1776798856503, "time": "Tue Apr 21 19:14:16 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 58703872, "io_kbytes": 57328, "bw_bytes": 11738426, "bw": 11463, "iops": 2865.826835, "runtime": 5001, "total_ios": 14332, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95851, "max": 3671341, "mean": 111689.625733, "stddev": 44798.916296, "N": 14332}, "clat_ns": {"min": 7480, "max": 7530993, "mean": 224205.511722, "stddev": 274227.66469, "N": 14332, "percentile": {"1.000000": 148480, "5.000000": 158720, "10.000000": 162816, "20.000000": 171008, "30.000000": 177152, "40.000000": 181248, "50.000000": 185344, "60.000000": 191488, "70.000000": 199680, "80.000000": 224256, "90.000000": 272384, "95.000000": 313344, "99.000000": 790528, "99.500000": 2039808, "99.900000": 4554752, "99.950000": 5013504, "99.990000": 6586368}}, "lat_ns": {"min": 239902, "max": 7672414, "mean": 338166.956461, "stddev": 281848.254327, "N": 14332}, "bw_min": 11948, "bw_max": 13072, "bw_agg": 100.0, "bw_mean": 12524.75, "bw_dev": 548.981709, "bw_samples": 4, "iops_min": 2987, "iops_max": 3268, "iops_mean": 3131.0, "iops_stddev": 137.406938, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 20.24, "sys_cpu": 20.26, "ctx": 14344, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.104661, "20": 0.18839, "50": 0.0, "100": 0.0, "250": 85.926598, "500": 12.573263, "750": 0.174435, "1000": 0.125593}, "latency_ms": {"2": 0.404689, "4": 0.313983, "10": 0.18839, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 14174, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2143, "in_queue": 2143, "util": 81.429432}]} 2026-04-21 19:14:07.622848 2026-04-21 19:10:15.083464 +440 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798872, "timestamp_ms": 1776798872427, "time": "Tue Apr 21 19:14:32 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 96722944, "io_kbytes": 94456, "bw_bytes": 19340720, "bw": 18887, "iops": 4721.855629, "runtime": 5001, "total_ios": 23614, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 71090, "max": 2206703, "mean": 95974.877996, "stddev": 32241.508438, "N": 23614}, "clat_ns": {"min": 5620, "max": 6358367, "mean": 104394.145041, "stddev": 248107.045851, "N": 23614, "percentile": {"1.000000": 52480, "5.000000": 54016, "10.000000": 55040, "20.000000": 59136, "30.000000": 61696, "40.000000": 66048, "50.000000": 73216, "60.000000": 85504, "70.000000": 90624, "80.000000": 96768, "90.000000": 118272, "95.000000": 152576, "99.000000": 831488, "99.500000": 1761280, "99.900000": 4177920, "99.950000": 4554752, "99.990000": 5341184}}, "lat_ns": {"min": 135941, "max": 6486547, "mean": 202639.456001, "stddev": 254275.375607, "N": 23614}, "bw_min": 10721, "bw_max": 22316, "bw_agg": 95.084444, "bw_mean": 17959.25, "bw_dev": 5305.536189, "bw_samples": 4, "iops_min": 2680, "iops_max": 5579, "iops_mean": 4489.75, "iops_stddev": 1326.497738, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 17.84, "sys_cpu": 48.26, "ctx": 23481, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.143982, "20": 0.076226, "50": 0.228678, "100": 82.120776, "250": 15.910053, "500": 0.355721, "750": 0.139748, "1000": 0.067756}, "latency_ms": {"2": 0.542051, "4": 0.28373, "10": 0.131278, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22859, "write_ios": 2, "read_merges": 0, "write_merges": 0, "read_ticks": 2943, "write_ticks": 47, "in_queue": 2992, "util": 74.707543}]} 2026-04-21 19:14:18.196123 2026-04-21 19:10:15.083464 +441 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798888, "timestamp_ms": 1776798888996, "time": "Tue Apr 21 19:14:48 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 94965760, "io_kbytes": 92740, "bw_bytes": 18989354, "bw": 18544, "iops": 4636.072785, "runtime": 5001, "total_ios": 23185, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82211, "max": 4042283, "mean": 96497.221695, "stddev": 41361.730242, "N": 23185}, "clat_ns": {"min": 5780, "max": 7769864, "mean": 106378.5686, "stddev": 252079.564546, "N": 23185, "percentile": {"1.000000": 52992, "5.000000": 54528, "10.000000": 56576, "20.000000": 61696, "30.000000": 66048, "40.000000": 73216, "50.000000": 82432, "60.000000": 86528, "70.000000": 90624, "80.000000": 96768, "90.000000": 116224, "95.000000": 152576, "99.000000": 692224, "99.500000": 1597440, "99.900000": 4423680, "99.950000": 4685824, "99.990000": 5406720}}, "lat_ns": {"min": 136891, "max": 7875285, "mean": 205072.299978, "stddev": 258987.006658, "N": 23185}, "bw_min": 14433, "bw_max": 22060, "bw_agg": 99.545461, "bw_mean": 18460.25, "bw_dev": 3944.334365, "bw_samples": 4, "iops_min": 3608, "iops_max": 5515, "iops_mean": 4615.0, "iops_stddev": 986.168681, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.66, "sys_cpu": 60.6, "ctx": 23109, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.120768, "20": 0.06901, "50": 0.198404, "100": 82.372223, "250": 15.807634, "500": 0.284667, "750": 0.176838, "1000": 0.047444}, "latency_ms": {"2": 0.547768, "4": 0.232909, "10": 0.142333, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22767, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2958, "write_ticks": 0, "in_queue": 2958, "util": 75.468688}]} 2026-04-21 19:14:34.514834 2026-04-21 19:10:15.083464 +442 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798899, "timestamp_ms": 1776798899207, "time": "Tue Apr 21 19:14:59 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 45588480, "io_kbytes": 44520, "bw_bytes": 9115872, "bw": 8902, "iops": 2225.554889, "runtime": 5001, "total_ios": 11130, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 94981, "max": 5375381, "mean": 112319.54699, "stddev": 61517.493741, "N": 11130}, "clat_ns": {"min": 5830, "max": 9707135, "mean": 322375.149955, "stddev": 368516.805346, "N": 11130, "percentile": {"1.000000": 181248, "5.000000": 193536, "10.000000": 203776, "20.000000": 216064, "30.000000": 232448, "40.000000": 254976, "50.000000": 276480, "60.000000": 292864, "70.000000": 305152, "80.000000": 321536, "90.000000": 370688, "95.000000": 432128, "99.000000": 2408448, "99.500000": 3358720, "99.900000": 4554752, "99.950000": 5079040, "99.990000": 6389760}}, "lat_ns": {"min": 261152, "max": 9853486, "mean": 437131.031177, "stddev": 379855.599739, "N": 11130}, "bw_min": 5256, "bw_max": 10329, "bw_agg": 100.0, "bw_mean": 9036.25, "bw_dev": 2520.280986, "bw_samples": 4, "iops_min": 1314, "iops_max": 2582, "iops_mean": 2259.0, "iops_stddev": 630.027513, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 13.24, "sys_cpu": 19.82, "ctx": 11141, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.044924, "20": 0.0, "50": 0.0, "100": 0.0, "250": 38.21204, "500": 58.975741, "750": 0.763702, "1000": 0.206649}, "latency_ms": {"2": 0.6469, "4": 0.934412, "10": 0.215633, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 11, "write_ios": 10811, "read_merges": 0, "write_merges": 0, "read_ticks": 5, "write_ticks": 1644, "in_queue": 1650, "util": 81.675393}]} 2026-04-21 19:14:50.848809 2026-04-21 19:10:15.083464 +443 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798910, "timestamp_ms": 1776798910902, "time": "Tue Apr 21 19:15:10 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9179234304, "io_kbytes": 8964096, "bw_bytes": 1835112815, "bw": 1792102, "iops": 875.04998, "runtime": 5002, "total_ios": 4377, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 193231, "max": 7061400, "mean": 290955.992004, "stddev": 188503.430731, "N": 4377}, "clat_ns": {"min": 10450, "max": 21417292, "mean": 830513.450765, "stddev": 751109.990351, "N": 4377, "percentile": {"1.000000": 436224, "5.000000": 585728, "10.000000": 618496, "20.000000": 651264, "30.000000": 684032, "40.000000": 708608, "50.000000": 741376, "60.000000": 774144, "70.000000": 815104, "80.000000": 864256, "90.000000": 970752, "95.000000": 1155072, "99.000000": 3096576, "99.500000": 4014080, "99.900000": 11206656, "99.950000": 21102592, "99.990000": 21364736}}, "lat_ns": {"min": 760414, "max": 21621893, "mean": 1126227.923007, "stddev": 778467.321266, "N": 4377}, "bw_min": 1698141, "bw_max": 1976320, "bw_agg": 100.0, "bw_mean": 1859753.75, "bw_dev": 116553.927591, "bw_samples": 4, "iops_min": 829, "iops_max": 965, "iops_mean": 908.0, "iops_stddev": 56.979528, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 9.018196, "sys_cpu": 19.656069, "ctx": 4463, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.13708, "50": 0.045693, "100": 0.0, "250": 0.114233, "500": 0.913868, "750": 52.638794, "1000": 37.719899}, "latency_ms": {"2": 6.602696, "4": 1.325109, "10": 0.388394, "20": 0.022847, "50": 0.091387, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8647, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5586, "in_queue": 5587, "util": 89.147442}]} 2026-04-21 19:15:02.432617 2026-04-21 19:10:15.083464 +444 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798947, "timestamp_ms": 1776798947377, "time": "Tue Apr 21 19:15:47 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15231614976, "io_kbytes": 14874624, "bw_bytes": 3045713852, "bw": 2974329, "iops": 1452.309538, "runtime": 5001, "total_ios": 7263, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 190761, "max": 4232014, "mean": 224286.82638, "stddev": 96159.716727, "N": 7263}, "clat_ns": {"min": 6060, "max": 5753833, "mean": 448934.482721, "stddev": 360625.867045, "N": 7263, "percentile": {"1.000000": 164864, "5.000000": 280576, "10.000000": 301056, "20.000000": 342016, "30.000000": 362496, "40.000000": 378880, "50.000000": 395264, "60.000000": 415744, "70.000000": 440320, "80.000000": 477184, "90.000000": 536576, "95.000000": 593920, "99.000000": 2605056, "99.500000": 3522560, "99.900000": 4882432, "99.950000": 5275648, "99.990000": 5734400}}, "lat_ns": {"min": 467253, "max": 6006814, "mean": 676730.568498, "stddev": 376236.56098, "N": 7263}, "bw_min": 2140160, "bw_max": 3386053, "bw_agg": 96.801332, "bw_mean": 2879191.25, "bw_dev": 536424.956698, "bw_samples": 4, "iops_min": 1045, "iops_max": 1653, "iops_mean": 1405.5, "iops_stddev": 261.749881, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.82, "sys_cpu": 39.26, "ctx": 7378, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.151453, "20": 0.178989, "50": 0.0, "100": 0.068842, "250": 1.005094, "500": 83.381523, "750": 12.790858, "1000": 0.468126}, "latency_ms": {"2": 0.7848, "4": 0.950021, "10": 0.220295, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13897, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4848, "write_ticks": 0, "in_queue": 4848, "util": 76.816327}]} 2026-04-21 19:15:33.149295 2026-04-21 19:10:15.083464 +445 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798962, "timestamp_ms": 1776798962419, "time": "Tue Apr 21 19:16:02 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14508097536, "io_kbytes": 14168064, "bw_bytes": 2901039299, "bw": 2833046, "iops": 1383.323335, "runtime": 5001, "total_ios": 6918, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 207351, "max": 6148015, "mean": 252774.656693, "stddev": 134544.31653, "N": 6918}, "clat_ns": {"min": 5600, "max": 5904313, "mean": 454629.294305, "stddev": 362583.331401, "N": 6918, "percentile": {"1.000000": 136192, "5.000000": 276480, "10.000000": 296960, "20.000000": 346112, "30.000000": 362496, "40.000000": 378880, "50.000000": 399360, "60.000000": 415744, "70.000000": 444416, "80.000000": 481280, "90.000000": 544768, "95.000000": 618496, "99.000000": 2408448, "99.500000": 3293184, "99.900000": 4554752, "99.950000": 5275648, "99.990000": 5931008}}, "lat_ns": {"min": 485602, "max": 6203825, "mean": 710681.007083, "stddev": 387419.881205, "N": 6918}, "bw_min": 2696567, "bw_max": 3222377, "bw_agg": 100.0, "bw_mean": 3022670.75, "bw_dev": 242369.216057, "bw_samples": 4, "iops_min": 1316, "iops_max": 1573, "iops_mean": 1475.5, "iops_stddev": 118.565031, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 8.0, "sys_cpu": 38.2, "ctx": 7049, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.346921, "20": 0.187916, "50": 0.0, "100": 0.02891, "250": 1.098583, "500": 82.3793, "750": 12.95172, "1000": 0.708297}, "latency_ms": {"2": 0.910668, "4": 1.185314, "10": 0.202371, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13370, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4715, "write_ticks": 0, "in_queue": 4715, "util": 80.762214}]} 2026-04-21 19:15:49.120902 2026-04-21 19:10:15.083464 +446 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798972, "timestamp_ms": 1776798972015, "time": "Tue Apr 21 19:16:12 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8468299776, "io_kbytes": 8269824, "bw_bytes": 1693321290, "bw": 1653634, "iops": 807.438512, "runtime": 5001, "total_ios": 4038, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 194961, "max": 10399609, "mean": 322755.61689, "stddev": 391037.285198, "N": 4038}, "clat_ns": {"min": 8581, "max": 9080302, "mean": 893986.52947, "stddev": 698693.369657, "N": 4038, "percentile": {"1.000000": 350208, "5.000000": 569344, "10.000000": 602112, "20.000000": 634880, "30.000000": 659456, "40.000000": 692224, "50.000000": 724992, "60.000000": 765952, "70.000000": 831488, "80.000000": 913408, "90.000000": 1089536, "95.000000": 1761280, "99.000000": 4489216, "99.500000": 5275648, "99.900000": 7176192, "99.950000": 7766016, "99.990000": 9109504}}, "lat_ns": {"min": 705654, "max": 10447040, "mean": 1221902.876672, "stddev": 812872.228952, "N": 4038}, "bw_min": 1265664, "bw_max": 1906829, "bw_agg": 97.133823, "bw_mean": 1606238.5, "bw_dev": 302864.171664, "bw_samples": 4, "iops_min": 618, "iops_max": 931, "iops_mean": 784.25, "iops_stddev": 147.834085, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.96, "sys_cpu": 22.62, "ctx": 4138, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.520059, "20": 0.074294, "50": 0.123824, "100": 0.0, "250": 0.074294, "500": 1.139178, "750": 54.309064, "1000": 30.80733}, "latency_ms": {"2": 8.444775, "4": 2.847945, "10": 1.659237, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 7843, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5350, "in_queue": 5349, "util": 83.648051}]} 2026-04-21 19:16:04.121769 2026-04-21 19:10:15.083464 +447 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776798983, "timestamp_ms": 1776798983199, "time": "Tue Apr 21 19:16:23 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9521070080, "io_kbytes": 9297920, "bw_bytes": 1903452634, "bw": 1858840, "iops": 453.818473, "runtime": 5002, "total_ios": 2270, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 917115, "max": 9122682, "mean": 1666231.903084, "stddev": 754458.650868, "N": 2270}, "clat_ns": {"min": 10530, "max": 9653955, "mean": 509095.353304, "stddev": 476342.216577, "N": 2270, "percentile": {"1.000000": 162816, "5.000000": 179200, "10.000000": 189440, "20.000000": 214016, "30.000000": 246784, "40.000000": 292864, "50.000000": 514048, "60.000000": 577536, "70.000000": 626688, "80.000000": 684032, "90.000000": 790528, "95.000000": 929792, "99.000000": 2179072, "99.500000": 3194880, "99.900000": 6455296, "99.950000": 6455296, "99.990000": 9633792}}, "lat_ns": {"min": 1388928, "max": 11431605, "mean": 2181586.689427, "stddev": 922362.954592, "N": 2270}, "bw_min": 1679360, "bw_max": 2031616, "bw_agg": 98.527552, "bw_mean": 1831470.5, "bw_dev": 153036.610482, "bw_samples": 4, "iops_min": 410, "iops_max": 496, "iops_mean": 447.0, "iops_stddev": 37.32738, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 2.79944, "sys_cpu": 25.394921, "ctx": 7942, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.088106, "50": 0.088106, "100": 0.0, "250": 30.704846, "500": 18.325991, "750": 38.193833, "1000": 8.678414}, "latency_ms": {"2": 2.863436, "4": 0.704846, "10": 0.352423, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8838, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5717, "in_queue": 5718, "util": 89.183223}]} 2026-04-21 19:16:15.536959 2026-04-21 19:10:15.083464 +448 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799009, "timestamp_ms": 1776799009584, "time": "Tue Apr 21 19:16:49 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 18324914176, "io_kbytes": 17895424, "bw_bytes": 3664249985, "bw": 3578369, "iops": 873.625275, "runtime": 5001, "total_ios": 4369, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 545773, "max": 6050124, "mean": 747711.902266, "stddev": 186012.406497, "N": 4369}, "clat_ns": {"min": 5170, "max": 4590097, "mean": 379980.135271, "stddev": 242689.121913, "N": 4369, "percentile": {"1.000000": 140288, "5.000000": 264192, "10.000000": 280576, "20.000000": 313344, "30.000000": 333824, "40.000000": 342016, "50.000000": 354304, "60.000000": 366592, "70.000000": 382976, "80.000000": 411648, "90.000000": 452608, "95.000000": 505856, "99.000000": 757760, "99.500000": 1826816, "99.900000": 4046848, "99.950000": 4177920, "99.990000": 4620288}}, "lat_ns": {"min": 793604, "max": 7001820, "mean": 1132541.280156, "stddev": 329322.895371, "N": 4369}, "bw_min": 3396283, "bw_max": 3830025, "bw_agg": 100.0, "bw_mean": 3657047.25, "bw_dev": 184546.226773, "bw_samples": 4, "iops_min": 829, "iops_max": 935, "iops_mean": 892.75, "iops_stddev": 45.110051, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.18, "sys_cpu": 33.74, "ctx": 13072, "majf": 0, "minf": 534, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.16022, "20": 0.389105, "50": 0.0, "100": 0.0, "250": 2.059968, "500": 91.874571, "750": 4.509041, "1000": 0.183108}, "latency_ms": {"2": 0.343328, "4": 0.366217, "10": 0.114443, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 17032, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5987, "write_ticks": 0, "in_queue": 5987, "util": 84.287752}]} 2026-04-21 19:16:26.414312 2026-04-21 19:10:15.083464 +449 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799028, "timestamp_ms": 1776799028031, "time": "Tue Apr 21 19:17:08 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16584278016, "io_kbytes": 16195584, "bw_bytes": 3316192364, "bw": 3238469, "iops": 790.641872, "runtime": 5001, "total_ios": 3954, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 567183, "max": 6357056, "mean": 775754.517956, "stddev": 195171.725542, "N": 3954}, "clat_ns": {"min": 8530, "max": 7463803, "mean": 468478.795144, "stddev": 401024.516874, "N": 3954, "percentile": {"1.000000": 166912, "5.000000": 288768, "10.000000": 309248, "20.000000": 358400, "30.000000": 378880, "40.000000": 391168, "50.000000": 407552, "60.000000": 428032, "70.000000": 456704, "80.000000": 489472, "90.000000": 552960, "95.000000": 618496, "99.000000": 2834432, "99.500000": 3751936, "99.900000": 4882432, "99.950000": 6651904, "99.990000": 7438336}}, "lat_ns": {"min": 847525, "max": 8372698, "mean": 1250059.077896, "stddev": 474308.070736, "N": 3954}, "bw_min": 3208055, "bw_max": 3633614, "bw_agg": 100.0, "bw_mean": 3456337.25, "bw_dev": 208992.728, "bw_samples": 4, "iops_min": 783, "iops_max": 887, "iops_mean": 843.75, "iops_stddev": 51.077555, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.88, "sys_cpu": 32.98, "ctx": 11841, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.202327, "20": 0.101163, "50": 0.0, "100": 0.0, "250": 2.276176, "500": 80.070814, "750": 14.592817, "1000": 0.531108}, "latency_ms": {"2": 0.784016, "4": 1.112797, "10": 0.328781, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15672, "write_ios": 24, "read_merges": 0, "write_merges": 13, "read_ticks": 5748, "write_ticks": 11, "in_queue": 5758, "util": 82.528324}]} 2026-04-21 19:16:51.502885 2026-04-21 19:10:15.083464 +484 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-21 19:12:43' --until '2026-04-21 19:26:10' 0 OOM records. 2026-04-21 19:12:43.858048 2026-04-21 19:26:10.364272 +450 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_0_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles --offset 0 --offset_increment 0 --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799037, "timestamp_ms": 1776799037371, "time": "Tue Apr 21 19:17:17 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_0_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/testfiles", "offset": "0", "offset_increment": "0", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-0-20260421-191245Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9290383360, "io_kbytes": 9072640, "bw_bytes": 1857333738, "bw": 1813802, "iops": 442.822871, "runtime": 5002, "total_ios": 2215, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 901616, "max": 61967283, "mean": 1716531.248307, "stddev": 1590748.146509, "N": 2215}, "clat_ns": {"min": 10060, "max": 7378612, "mean": 512074.272686, "stddev": 485121.733155, "N": 2215, "percentile": {"1.000000": 158720, "5.000000": 175104, "10.000000": 185344, "20.000000": 207872, "30.000000": 244736, "40.000000": 296960, "50.000000": 497664, "60.000000": 569344, "70.000000": 626688, "80.000000": 684032, "90.000000": 790528, "95.000000": 905216, "99.000000": 2932736, "99.500000": 4014080, "99.900000": 5079040, "99.950000": 5341184, "99.990000": 7372800}}, "lat_ns": {"min": 1324048, "max": 62368545, "mean": 2237067.881264, "stddev": 1688741.273989, "N": 2215}, "bw_min": 1501730, "bw_max": 1892352, "bw_agg": 97.597286, "bw_mean": 1770222.5, "bw_dev": 182696.777141, "bw_samples": 4, "iops_min": 366, "iops_max": 462, "iops_mean": 431.75, "iops_stddev": 44.768851, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5002, "usr_cpu": 3.478609, "sys_cpu": 23.590564, "ctx": 7743, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.361174, "50": 0.13544, "100": 0.0, "250": 30.970655, "500": 18.645598, "750": 37.742664, "1000": 8.171558}, "latency_ms": {"2": 2.392777, "4": 1.038375, "10": 0.541761, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8617, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5707, "in_queue": 5707, "util": 88.335676}]} 2026-04-21 19:17:09.723614 2026-04-21 19:10:15.083464 +451 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799053, "timestamp_ms": 1776799053393, "time": "Tue Apr 21 19:17:33 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10213888, "io_kbytes": 9974, "bw_bytes": 2042369, "bw": 1994, "iops": 3989.0022, "runtime": 5001, "total_ios": 19949, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84551, "max": 8447438, "mean": 144795.36087, "stddev": 269479.689826, "N": 19949}, "clat_ns": {"min": 4640, "max": 7080031, "mean": 94113.73322, "stddev": 113278.643651, "N": 19949, "percentile": {"1.000000": 5408, "5.000000": 5600, "10.000000": 6304, "20.000000": 68096, "30.000000": 78336, "40.000000": 86528, "50.000000": 92672, "60.000000": 97792, "70.000000": 103936, "80.000000": 112128, "90.000000": 136192, "95.000000": 175104, "99.000000": 236544, "99.500000": 276480, "99.900000": 1138688, "99.950000": 3194880, "99.990000": 4292608}}, "lat_ns": {"min": 146010, "max": 8463278, "mean": 241257.624543, "stddev": 282493.680703, "N": 19949}, "bw_min": 1183, "bw_max": 2316, "bw_agg": 96.816197, "bw_mean": 1931.75, "bw_dev": 531.082778, "bw_samples": 4, "iops_min": 2367, "iops_max": 4632, "iops_mean": 3864.0, "iops_stddev": 1061.928748, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 9.5, "sys_cpu": 47.56, "ctx": 19961, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.37656, "20": 0.280716, "50": 0.040102, "100": 51.782044, "250": 34.738583, "500": 0.556419, "750": 0.110281, "1000": 0.010026}, "latency_ms": {"2": 0.030077, "4": 0.060153, "10": 0.015038, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 19597, "read_merges": 0, "write_merges": 2451, "read_ticks": 0, "write_ticks": 2650, "in_queue": 2649, "util": 79.694718}]} 2026-04-21 19:17:25.265033 2026-04-21 19:10:15.083464 +452 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799076, "timestamp_ms": 1776799076805, "time": "Tue Apr 21 19:17:56 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12524032, "io_kbytes": 12230, "bw_bytes": 2504305, "bw": 2445, "iops": 4891.221756, "runtime": 5001, "total_ios": 24461, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 78230, "max": 3140758, "mean": 94664.809779, "stddev": 31482.651517, "N": 24461}, "clat_ns": {"min": 4020, "max": 8519479, "mean": 99628.731491, "stddev": 234182.638553, "N": 24461, "percentile": {"1.000000": 50432, "5.000000": 52480, "10.000000": 54016, "20.000000": 57600, "30.000000": 59648, "40.000000": 63744, "50.000000": 70144, "60.000000": 82432, "70.000000": 87552, "80.000000": 95744, "90.000000": 115200, "95.000000": 150528, "99.000000": 634880, "99.500000": 1613824, "99.900000": 3948544, "99.950000": 4554752, "99.990000": 6193152}}, "lat_ns": {"min": 126891, "max": 8651310, "mean": 196297.470872, "stddev": 240426.743258, "N": 24461}, "bw_min": 1471, "bw_max": 3000, "bw_agg": 99.27992, "bw_mean": 2428.0, "bw_dev": 663.39179, "bw_samples": 4, "iops_min": 2943, "iops_max": 6000, "iops_mean": 4856.75, "iops_stddev": 1326.496231, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.66, "sys_cpu": 60.1, "ctx": 24271, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.171702, "20": 0.069498, "50": 0.52737, "100": 82.797106, "250": 15.019827, "500": 0.339316, "750": 0.102204, "1000": 0.04497}, "latency_ms": {"2": 0.588692, "4": 0.245288, "10": 0.094027, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23142, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2916, "write_ticks": 0, "in_queue": 2917, "util": 77.318528}]} 2026-04-21 19:17:35.031084 2026-04-21 19:10:15.083464 +453 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799100, "timestamp_ms": 1776799100624, "time": "Tue Apr 21 19:18:20 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12400128, "io_kbytes": 12109, "bw_bytes": 2479529, "bw": 2421, "iops": 4842.831434, "runtime": 5001, "total_ios": 24219, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 79251, "max": 3322849, "mean": 93648.214831, "stddev": 30889.065114, "N": 24219}, "clat_ns": {"min": 5540, "max": 7258862, "mean": 100830.845741, "stddev": 243345.926595, "N": 24219, "percentile": {"1.000000": 51456, "5.000000": 52992, "10.000000": 54016, "20.000000": 59136, "30.000000": 63232, "40.000000": 68096, "50.000000": 72192, "60.000000": 82432, "70.000000": 88576, "80.000000": 94720, "90.000000": 117248, "95.000000": 148480, "99.000000": 370688, "99.500000": 1695744, "99.900000": 4358144, "99.950000": 4751360, "99.990000": 5472256}}, "lat_ns": {"min": 129991, "max": 7390453, "mean": 196596.014451, "stddev": 249462.189469, "N": 24219}, "bw_min": 1464, "bw_max": 2867, "bw_agg": 98.083144, "bw_mean": 2375.0, "bw_dev": 655.051652, "bw_samples": 4, "iops_min": 2929, "iops_max": 5735, "iops_mean": 4751.0, "iops_stddev": 1310.103304, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.1, "sys_cpu": 50.88, "ctx": 24085, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.08258, "20": 0.066064, "50": 0.388125, "100": 83.339527, "250": 14.975845, "500": 0.20232, "750": 0.061935, "1000": 0.057806}, "latency_ms": {"2": 0.437673, "4": 0.280771, "10": 0.107354, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22945, "write_ios": 0, "read_merges": 0, "write_merges": 1, "read_ticks": 2854, "write_ticks": 0, "in_queue": 2854, "util": 79.571222}]} 2026-04-21 19:17:58.468352 2026-04-21 19:10:15.083464 +454 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799110, "timestamp_ms": 1776799110665, "time": "Tue Apr 21 19:18:30 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 6183936, "io_kbytes": 6039, "bw_bytes": 1235798, "bw": 1206, "iops": 2413.669065, "runtime": 5004, "total_ios": 12078, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93540, "max": 10740121, "mean": 390828.110283, "stddev": 287337.522119, "N": 12078}, "clat_ns": {"min": 4790, "max": 2148382, "mean": 7944.069548, "stddev": 25123.426943, "N": 12078, "percentile": {"1.000000": 4960, "5.000000": 5088, "10.000000": 5152, "20.000000": 5216, "30.000000": 5280, "40.000000": 5344, "50.000000": 5472, "60.000000": 5536, "70.000000": 5600, "80.000000": 5792, "90.000000": 7968, "95.000000": 8896, "99.000000": 113152, "99.500000": 123392, "99.900000": 191488, "99.950000": 232448, "99.990000": 464896}}, "lat_ns": {"min": 177341, "max": 10755231, "mean": 402444.078407, "stddev": 288832.437665, "N": 12078}, "bw_min": 1030, "bw_max": 1342, "bw_agg": 100.0, "bw_mean": 1235.75, "bw_dev": 140.632796, "bw_samples": 4, "iops_min": 2060, "iops_max": 2685, "iops_mean": 2472.25, "iops_stddev": 281.75329, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5003, "usr_cpu": 6.01639, "sys_cpu": 71.297222, "ctx": 12126, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 96.75443, "20": 1.556549, "50": 0.091075, "100": 0.273224, "250": 1.291605, "500": 0.024839, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.01, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 11941, "read_merges": 0, "write_merges": 20547, "read_ticks": 0, "write_ticks": 1785, "in_queue": 1785, "util": 79.435484}]} 2026-04-21 19:18:22.24416 2026-04-21 19:10:15.083464 +455 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799121, "timestamp_ms": 1776799121954, "time": "Tue Apr 21 19:18:41 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 61300736, "io_kbytes": 59864, "bw_bytes": 12257695, "bw": 11970, "iops": 2992.60148, "runtime": 5001, "total_ios": 14966, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 239361, "max": 111319425, "mean": 316456.00167, "stddev": 943271.679799, "N": 14966}, "clat_ns": {"min": 4930, "max": 488282, "mean": 5757.506214, "stddev": 5705.562398, "N": 14966, "percentile": {"1.000000": 5024, "5.000000": 5088, "10.000000": 5152, "20.000000": 5152, "30.000000": 5216, "40.000000": 5216, "50.000000": 5280, "60.000000": 5280, "70.000000": 5344, "80.000000": 5472, "90.000000": 5792, "95.000000": 8256, "99.000000": 12480, "99.500000": 16768, "99.900000": 47872, "99.950000": 68096, "99.990000": 272384}}, "lat_ns": {"min": 247021, "max": 111359295, "mean": 325258.878191, "stddev": 944571.906636, "N": 14966}, "bw_min": 11008, "bw_max": 12876, "bw_agg": 98.342535, "bw_mean": 11772.0, "bw_dev": 816.006536, "bw_samples": 4, "iops_min": 2752, "iops_max": 3219, "iops_mean": 2943.0, "iops_stddev": 204.001634, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.36, "sys_cpu": 66.82, "ctx": 15018, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 98.48991, "20": 1.242817, "50": 0.180409, "100": 0.053454, "250": 0.020045, "500": 0.013364, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 14580, "read_merges": 0, "write_merges": 29080, "read_ticks": 0, "write_ticks": 2418, "in_queue": 2534, "util": 50.462777}]} 2026-04-21 19:18:33.813099 2026-04-21 19:10:15.083464 +456 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799138, "timestamp_ms": 1776799138305, "time": "Tue Apr 21 19:18:58 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 101089280, "io_kbytes": 98720, "bw_bytes": 20229993, "bw": 19755, "iops": 4938.963378, "runtime": 4997, "total_ios": 24680, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 80070, "max": 3378989, "mean": 94323.637763, "stddev": 30836.315307, "N": 24680}, "clat_ns": {"min": 4370, "max": 6529167, "mean": 97530.445421, "stddev": 220167.389612, "N": 24680, "percentile": {"1.000000": 50944, "5.000000": 52992, "10.000000": 54528, "20.000000": 58112, "30.000000": 60672, "40.000000": 64256, "50.000000": 69120, "60.000000": 81408, "70.000000": 88576, "80.000000": 93696, "90.000000": 111104, "95.000000": 140288, "99.000000": 634880, "99.500000": 1515520, "99.900000": 3784704, "99.950000": 4292608, "99.990000": 5406720}}, "lat_ns": {"min": 130200, "max": 6658268, "mean": 193948.288817, "stddev": 226198.279199, "N": 24680}, "bw_min": 13428, "bw_max": 22713, "bw_agg": 96.300577, "bw_mean": 19025.25, "bw_dev": 4511.974983, "bw_samples": 4, "iops_min": 3357, "iops_max": 5678, "iops_mean": 4756.25, "iops_stddev": 1127.92564, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 23.86, "sys_cpu": 43.56, "ctx": 24476, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.429498, "20": 0.048622, "50": 0.279579, "100": 84.886548, "250": 13.075365, "500": 0.210697, "750": 0.101297, "1000": 0.085089}, "latency_ms": {"2": 0.575365, "4": 0.251216, "10": 0.056726, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23806, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2972, "write_ticks": 0, "in_queue": 2972, "util": 74.288039}]} 2026-04-21 19:18:44.11658 2026-04-21 19:10:15.083464 +457 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799155, "timestamp_ms": 1776799155753, "time": "Tue Apr 21 19:19:15 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 96550912, "io_kbytes": 94288, "bw_bytes": 19306321, "bw": 18853, "iops": 4713.457309, "runtime": 5001, "total_ios": 23572, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 81751, "max": 3021998, "mean": 96530.129518, "stddev": 28801.125884, "N": 23572}, "clat_ns": {"min": 4130, "max": 6390336, "mean": 103543.368997, "stddev": 226486.040793, "N": 23572, "percentile": {"1.000000": 51456, "5.000000": 54016, "10.000000": 56064, "20.000000": 60160, "30.000000": 64256, "40.000000": 68096, "50.000000": 76288, "60.000000": 85504, "70.000000": 90624, "80.000000": 97792, "90.000000": 117248, "95.000000": 150528, "99.000000": 1019904, "99.500000": 1597440, "99.900000": 3817472, "99.950000": 4423680, "99.990000": 5472256}}, "lat_ns": {"min": 132591, "max": 6536457, "mean": 202354.513194, "stddev": 232203.207848, "N": 23572}, "bw_min": 10000, "bw_max": 22004, "bw_agg": 95.86912, "bw_mean": 18075.0, "bw_dev": 5645.978274, "bw_samples": 4, "iops_min": 2500, "iops_max": 5501, "iops_mean": 4518.75, "iops_stddev": 1411.494568, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 11.46, "sys_cpu": 55.52, "ctx": 23419, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.267266, "20": 0.033939, "50": 0.267266, "100": 81.554387, "250": 16.443238, "500": 0.195147, "750": 0.135754, "1000": 0.097573}, "latency_ms": {"2": 0.699983, "4": 0.233328, "10": 0.072119, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22964, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2964, "write_ticks": 0, "in_queue": 2963, "util": 73.61668}]} 2026-04-21 19:18:59.903055 2026-04-21 19:10:15.083464 +485 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-21 19:12:43' --until '2026-04-21 19:26:10' 0 Systemd errors records 2026-04-21 19:12:43.858048 2026-04-21 19:26:10.364272 +486 12 loader /usr/bin/fio --name rand_write_512b --numjobs 1 --filename small_testfile --size 274MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260421-192619Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:26:23.821075 2026-04-21 19:10:15.083464 +458 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799165, "timestamp_ms": 1776799165601, "time": "Tue Apr 21 19:19:25 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 44474368, "io_kbytes": 43432, "bw_bytes": 8893094, "bw": 8684, "iops": 2171.165767, "runtime": 5001, "total_ios": 10858, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 108021, "max": 7279982, "mean": 439531.118991, "stddev": 359116.12973, "N": 10858}, "clat_ns": {"min": 4920, "max": 1127047, "mean": 6319.569626, "stddev": 11636.389475, "N": 10858, "percentile": {"1.000000": 5088, "5.000000": 5216, "10.000000": 5280, "20.000000": 5344, "30.000000": 5408, "40.000000": 5472, "50.000000": 5536, "60.000000": 5600, "70.000000": 5728, "80.000000": 5920, "90.000000": 8896, "95.000000": 9536, "99.000000": 12736, "99.500000": 17280, "99.900000": 31360, "99.950000": 118272, "99.990000": 261120}}, "lat_ns": {"min": 214951, "max": 7295142, "mean": 449413.511604, "stddev": 360705.460056, "N": 10858}, "bw_min": 4487, "bw_max": 10232, "bw_agg": 97.401602, "bw_mean": 8459.0, "bw_dev": 2704.036366, "bw_samples": 4, "iops_min": 1121, "iops_max": 2558, "iops_mean": 2114.5, "iops_stddev": 676.325612, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.58, "sys_cpu": 71.04, "ctx": 10869, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 97.623872, "20": 2.155093, "50": 0.138147, "100": 0.01, "250": 0.055259, "500": 0.01, "750": 0.0, "1000": 0.0}, "latency_ms": {"2": 0.01, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10575, "read_merges": 0, "write_merges": 21146, "read_ticks": 0, "write_ticks": 1665, "in_queue": 1665, "util": 71.376957}]} 2026-04-21 19:19:17.406247 2026-04-21 19:10:15.083464 +459 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799176, "timestamp_ms": 1776799176954, "time": "Tue Apr 21 19:19:36 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 8839495680, "io_kbytes": 8632320, "bw_bytes": 1706466347, "bw": 1666471, "iops": 813.706564, "runtime": 5180, "total_ios": 4215, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 207531, "max": 11871418, "mean": 465692.561803, "stddev": 482270.431229, "N": 4215}, "clat_ns": {"min": 5230, "max": 188121152, "mean": 743562.95089, "stddev": 2948543.40024, "N": 4215, "percentile": {"1.000000": 5728, "5.000000": 6560, "10.000000": 7008, "20.000000": 585728, "30.000000": 634880, "40.000000": 667648, "50.000000": 700416, "60.000000": 733184, "70.000000": 782336, "80.000000": 839680, "90.000000": 937984, "95.000000": 1122304, "99.000000": 3588096, "99.500000": 4358144, "99.900000": 7176192, "99.950000": 9895936, "99.990000": 187695104}}, "lat_ns": {"min": 774364, "max": 188713365, "mean": 1213415.271412, "stddev": 2955253.313834, "N": 4215}, "bw_min": 1579944, "bw_max": 1912967, "bw_agg": 100.0, "bw_mean": 1784075.75, "bw_dev": 144501.575439, "bw_samples": 4, "iops_min": 771, "iops_max": 934, "iops_mean": 871.0, "iops_stddev": 70.753092, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5180, "usr_cpu": 3.088803, "sys_cpu": 26.389961, "ctx": 4966, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 13.736655, "20": 1.945433, "50": 0.260973, "100": 0.0, "250": 0.04745, "500": 0.332147, "750": 47.093713, "1000": 29.395018}, "latency_ms": {"2": 5.385528, "4": 1.020166, "10": 0.735469, "20": 0.023725, "50": 0.0, "100": 0.0, "250": 0.023725, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 9098, "read_merges": 0, "write_merges": 668, "read_ticks": 0, "write_ticks": 6110, "in_queue": 6111, "util": 88.536355}]} 2026-04-21 19:19:28.345049 2026-04-21 19:10:15.083464 +460 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799208, "timestamp_ms": 1776799208802, "time": "Tue Apr 21 19:20:08 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15091105792, "io_kbytes": 14737408, "bw_bytes": 3017617634, "bw": 2946892, "iops": 1438.912218, "runtime": 5001, "total_ios": 7196, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 197381, "max": 5404340, "mean": 234120.953168, "stddev": 110163.005234, "N": 7196}, "clat_ns": {"min": 5690, "max": 9369253, "mean": 446144.969983, "stddev": 368256.414787, "N": 7196, "percentile": {"1.000000": 127488, "5.000000": 272384, "10.000000": 292864, "20.000000": 342016, "30.000000": 362496, "40.000000": 378880, "50.000000": 395264, "60.000000": 411648, "70.000000": 440320, "80.000000": 477184, "90.000000": 536576, "95.000000": 602112, "99.000000": 2310144, "99.500000": 3588096, "99.900000": 4554752, "99.950000": 5144576, "99.990000": 9371648}}, "lat_ns": {"min": 464982, "max": 9624655, "mean": 683664.272096, "stddev": 387860.202942, "N": 7196}, "bw_min": 2088960, "bw_max": 3315712, "bw_agg": 99.126767, "bw_mean": 2921159.25, "bw_dev": 575610.526767, "bw_samples": 4, "iops_min": 1020, "iops_max": 1619, "iops_mean": 1426.25, "iops_stddev": 280.97494, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 13.7, "sys_cpu": 31.52, "ctx": 7301, "majf": 0, "minf": 533, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.347415, "20": 0.138966, "50": 0.013897, "100": 0.152863, "250": 1.167315, "500": 82.518066, "750": 13.354641, "1000": 0.430795}, "latency_ms": {"2": 0.73652, "4": 0.875486, "10": 0.264036, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13787, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4865, "write_ticks": 0, "in_queue": 4865, "util": 84.076433}]} 2026-04-21 19:19:47.585826 2026-04-21 19:10:15.083464 +461 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799224, "timestamp_ms": 1776799224828, "time": "Tue Apr 21 19:20:24 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15279849472, "io_kbytes": 14921728, "bw_bytes": 3055358822, "bw": 2983748, "iops": 1456.908618, "runtime": 5001, "total_ios": 7286, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 186391, "max": 4284975, "mean": 226434.666209, "stddev": 99368.431897, "N": 7286}, "clat_ns": {"min": 7110, "max": 11157563, "mean": 442122.464864, "stddev": 387647.876667, "N": 7286, "percentile": {"1.000000": 134144, "5.000000": 272384, "10.000000": 288768, "20.000000": 342016, "30.000000": 358400, "40.000000": 370688, "50.000000": 387072, "60.000000": 407552, "70.000000": 432128, "80.000000": 468992, "90.000000": 528384, "95.000000": 585728, "99.000000": 2375680, "99.500000": 3522560, "99.900000": 4816896, "99.950000": 5668864, "99.990000": 11206656}}, "lat_ns": {"min": 461033, "max": 11412835, "mean": 672644.85081, "stddev": 402955.093727, "N": 7286}, "bw_min": 2322157, "bw_max": 3353318, "bw_agg": 96.769271, "bw_mean": 2887352.0, "bw_dev": 531823.329688, "bw_samples": 4, "iops_min": 1133, "iops_max": 1637, "iops_mean": 1409.25, "iops_stddev": 259.938935, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.62, "sys_cpu": 34.18, "ctx": 7396, "majf": 0, "minf": 530, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.260774, "20": 0.247049, "50": 0.013725, "100": 0.13725, "250": 1.194071, "500": 83.873181, "750": 11.872083, "1000": 0.507823}, "latency_ms": {"2": 0.713698, "4": 0.919572, "10": 0.247049, "20": 0.013725, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13919, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4853, "write_ticks": 0, "in_queue": 4854, "util": 82.941777}]} 2026-04-21 19:20:10.444746 2026-04-21 19:10:15.083464 +462 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799234, "timestamp_ms": 1776799234643, "time": "Tue Apr 21 19:20:34 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9158262784, "io_kbytes": 8943616, "bw_bytes": 1831286299, "bw": 1788365, "iops": 873.225355, "runtime": 5001, "total_ios": 4367, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 192991, "max": 12198700, "mean": 446560.017174, "stddev": 562812.658623, "N": 4367}, "clat_ns": {"min": 5480, "max": 7830264, "mean": 678572.073964, "stddev": 595725.825311, "N": 4367, "percentile": {"1.000000": 5856, "5.000000": 6304, "10.000000": 6752, "20.000000": 577536, "30.000000": 618496, "40.000000": 634880, "50.000000": 659456, "60.000000": 684032, "70.000000": 724992, "80.000000": 774144, "90.000000": 864256, "95.000000": 1089536, "99.000000": 3620864, "99.500000": 4882432, "99.900000": 7110656, "99.950000": 7241728, "99.990000": 7831552}}, "lat_ns": {"min": 696394, "max": 12256240, "mean": 1128928.921456, "stddev": 691147.15237, "N": 4367}, "bw_min": 1485362, "bw_max": 1923196, "bw_agg": 99.929459, "bw_mean": 1787104.0, "bw_dev": 204469.20829, "bw_samples": 4, "iops_min": 725, "iops_max": 939, "iops_mean": 872.5, "iops_stddev": 99.951655, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 6.1, "sys_cpu": 22.74, "ctx": 5109, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 13.670712, "20": 1.419739, "50": 0.251889, "100": 0.022899, "250": 0.045798, "500": 0.503778, "750": 59.53744, "1000": 18.84589}, "latency_ms": {"2": 3.160064, "4": 1.671628, "10": 0.870163, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 9201, "read_merges": 0, "write_merges": 668, "read_ticks": 0, "write_ticks": 5832, "in_queue": 5832, "util": 91.375852}]} 2026-04-21 19:20:26.438991 2026-04-21 19:10:15.083464 +463 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799246, "timestamp_ms": 1776799246526, "time": "Tue Apr 21 19:20:46 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 3590324224, "io_kbytes": 3506176, "bw_bytes": 717777733, "bw": 700954, "iops": 171.131547, "runtime": 5002, "total_ios": 856, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 1020286, "max": 2671447032, "mean": 5358709.75, "stddev": 91564921.125499, "N": 856}, "clat_ns": {"min": 5751, "max": 8640649, "mean": 455246.524533, "stddev": 633551.654333, "N": 856, "percentile": {"1.000000": 5920, "5.000000": 6048, "10.000000": 6240, "20.000000": 6624, "30.000000": 10432, "40.000000": 329728, "50.000000": 382976, "60.000000": 432128, "70.000000": 724992, "80.000000": 815104, "90.000000": 921600, "95.000000": 1056768, "99.000000": 2736128, "99.500000": 4145152, "99.900000": 8585216, "99.950000": 8585216, "99.990000": 8585216}}, "lat_ns": {"min": 1690240, "max": 2671771234, "mean": 5821528.391355, "stddev": 91561093.124669, "N": 856}, "bw_min": 732451, "bw_max": 1220608, "bw_agg": 100.0, "bw_mean": 976529.5, "bw_dev": 345179.124984, "bw_samples": 2, "iops_min": 178, "iops_max": 298, "iops_mean": 238.0, "iops_stddev": 84.852814, "iops_samples": 2}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 0.339932, "sys_cpu": 12.317536, "ctx": 3251, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 28.621495, "20": 8.64486, "50": 1.635514, "100": 0.0, "250": 0.0, "500": 26.518692, "750": 6.542056, "1000": 21.61215}, "latency_ms": {"2": 4.78972, "4": 0.934579, "10": 0.700935, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 3652, "read_merges": 0, "write_merges": 344, "read_ticks": 0, "write_ticks": 8037, "in_queue": 10924, "util": 94.263442}]} 2026-04-21 19:20:37.644559 2026-04-21 19:10:15.083464 +464 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799265, "timestamp_ms": 1776799265924, "time": "Tue Apr 21 19:21:05 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15946743808, "io_kbytes": 15572992, "bw_bytes": 3189348761, "bw": 3114598, "iops": 760.4, "runtime": 5000, "total_ios": 3802, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 524943, "max": 23324982, "mean": 827752.626512, "stddev": 499438.334537, "N": 3802}, "clat_ns": {"min": 6930, "max": 21593303, "mean": 465215.160179, "stddev": 625591.803773, "N": 3802, "percentile": {"1.000000": 9920, "5.000000": 175104, "10.000000": 268288, "20.000000": 313344, "30.000000": 329728, "40.000000": 346112, "50.000000": 370688, "60.000000": 391168, "70.000000": 411648, "80.000000": 444416, "90.000000": 505856, "95.000000": 651264, "99.000000": 3784704, "99.500000": 4227072, "99.900000": 5210112, "99.950000": 6324224, "99.990000": 21626880}}, "lat_ns": {"min": 773475, "max": 25113233, "mean": 1301261.593372, "stddev": 850199.304727, "N": 3802}, "bw_min": 2637824, "bw_max": 3780608, "bw_agg": 98.519539, "bw_mean": 3068488.0, "bw_dev": 537656.832641, "bw_samples": 4, "iops_min": 644, "iops_max": 923, "iops_mean": 749.0, "iops_stddev": 131.334179, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 3.14, "sys_cpu": 31.18, "ctx": 11387, "majf": 0, "minf": 536, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.052078, "20": 0.447133, "50": 0.026302, "100": 0.026302, "250": 5.760126, "500": 82.246186, "750": 5.760126, "1000": 0.604945}, "latency_ms": {"2": 1.551815, "4": 1.841136, "10": 0.657549, "20": 0.0, "50": 0.026302, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 14807, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5560, "write_ticks": 0, "in_queue": 5560, "util": 83.580891}]} 2026-04-21 19:20:51.054421 2026-04-21 19:10:15.083464 +465 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799282, "timestamp_ms": 1776799282193, "time": "Tue Apr 21 19:21:22 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 18274582528, "io_kbytes": 17846272, "bw_bytes": 3654185668, "bw": 3568540, "iops": 871.225755, "runtime": 5001, "total_ios": 4357, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 564253, "max": 5960554, "mean": 728591.956392, "stddev": 209614.262569, "N": 4357}, "clat_ns": {"min": 6080, "max": 4524726, "mean": 401623.873307, "stddev": 139815.884498, "N": 4357, "percentile": {"1.000000": 177152, "5.000000": 292864, "10.000000": 305152, "20.000000": 346112, "30.000000": 370688, "40.000000": 382976, "50.000000": 395264, "60.000000": 407552, "70.000000": 419840, "80.000000": 444416, "90.000000": 481280, "95.000000": 528384, "99.000000": 643072, "99.500000": 831488, "99.900000": 2277376, "99.950000": 3817472, "99.990000": 4554752}}, "lat_ns": {"min": 865015, "max": 7981266, "mean": 1135022.652284, "stddev": 277003.084743, "N": 4357}, "bw_min": 3367640, "bw_max": 3657728, "bw_agg": 100.0, "bw_mean": 3569057.0, "bw_dev": 137147.156109, "bw_samples": 4, "iops_min": 822, "iops_max": 893, "iops_mean": 871.25, "iops_stddev": 33.539777, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.24, "sys_cpu": 32.98, "ctx": 13042, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.091806, "20": 0.137709, "50": 0.0, "100": 0.0, "250": 1.354143, "500": 91.209548, "750": 6.678908, "1000": 0.29837}, "latency_ms": {"2": 0.091806, "4": 0.091806, "10": 0.045903, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 16997, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5849, "write_ticks": 0, "in_queue": 5849, "util": 84.482064}]} 2026-04-21 19:21:07.511945 2026-04-21 19:10:15.083464 +466 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_512b_none_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles --offset 512b --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799291, "timestamp_ms": 1776799291819, "time": "Tue Apr 21 19:21:31 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_512b_none_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/testfiles", "offset": "512b", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-512b-none-20260421-191723Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9219080192, "io_kbytes": 9003008, "bw_bytes": 1843447348, "bw": 1800241, "iops": 439.512098, "runtime": 5001, "total_ios": 2198, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 904315, "max": 11493946, "mean": 1822125.33667, "stddev": 1018574.819344, "N": 2198}, "clat_ns": {"min": 5410, "max": 6515418, "mean": 426562.103276, "stddev": 451758.5331, "N": 2198, "percentile": {"1.000000": 5792, "5.000000": 6048, "10.000000": 7456, "20.000000": 175104, "30.000000": 197632, "40.000000": 230400, "50.000000": 268288, "60.000000": 536576, "70.000000": 585728, "80.000000": 651264, "90.000000": 749568, "95.000000": 888832, "99.000000": 2506752, "99.500000": 3424256, "99.900000": 4685824, "99.950000": 5013504, "99.990000": 6520832}}, "lat_ns": {"min": 1367568, "max": 12478081, "mean": 2254573.117834, "stddev": 1105120.238914, "N": 2198}, "bw_min": 1534465, "bw_max": 1933312, "bw_agg": 97.026035, "bw_mean": 1746703.25, "bw_dev": 163510.683735, "bw_samples": 4, "iops_min": 374, "iops_max": 472, "iops_mean": 426.25, "iops_stddev": 40.186026, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 1.72, "sys_cpu": 25.54, "ctx": 7974, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 11.55596, "20": 3.184713, "50": 0.545951, "100": 0.0, "250": 31.483167, "500": 10.509554, "750": 32.89354, "1000": 6.232939}, "latency_ms": {"2": 2.365787, "4": 1.046406, "10": 0.181984, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8879, "read_merges": 0, "write_merges": 334, "read_ticks": 0, "write_ticks": 5774, "in_queue": 5774, "util": 89.718876}]} 2026-04-21 19:21:24.182108 2026-04-21 19:10:15.083464 +467 12 loader /usr/bin/fio --name write_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799314, "timestamp_ms": 1776799314188, "time": "Tue Apr 21 19:21:54 2026", "jobs": [{"jobname": "write_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_512b/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9737728, "io_kbytes": 9509, "bw_bytes": 1947156, "bw": 1901, "iops": 3803.039392, "runtime": 5001, "total_ios": 19019, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 84871, "max": 7333732, "mean": 142697.084126, "stddev": 224568.257196, "N": 19019}, "clat_ns": {"min": 4300, "max": 10262059, "mean": 107888.875808, "stddev": 252622.500413, "N": 19019, "percentile": {"1.000000": 4832, "5.000000": 5024, "10.000000": 5472, "20.000000": 64256, "30.000000": 73216, "40.000000": 78336, "50.000000": 89600, "60.000000": 97792, "70.000000": 105984, "80.000000": 117248, "90.000000": 154624, "95.000000": 195584, "99.000000": 313344, "99.500000": 1253376, "99.900000": 4489216, "99.950000": 4882432, "99.990000": 7241728}}, "lat_ns": {"min": 145470, "max": 10405089, "mean": 253125.146327, "stddev": 331791.58026, "N": 19019}, "bw_min": 998, "bw_max": 2337, "bw_agg": 96.344001, "bw_mean": 1832.75, "bw_dev": 616.963735, "bw_samples": 4, "iops_min": 1997, "iops_max": 4674, "iops_mean": 3666.25, "iops_stddev": 1233.655104, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 12.22, "sys_cpu": 44.08, "ctx": 18992, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 12.834534, "20": 0.394342, "50": 0.031547, "100": 50.418003, "250": 34.781008, "500": 0.814974, "750": 0.120932, "1000": 0.047321}, "latency_ms": {"2": 0.173511, "4": 0.241863, "10": 0.136705, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 18471, "read_merges": 0, "write_merges": 2309, "read_ticks": 0, "write_ticks": 3399, "in_queue": 3399, "util": 59.919679}]} 2026-04-21 19:21:46.492322 2026-04-21 19:10:15.083464 +468 12 loader /usr/bin/fio --name read_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799338, "timestamp_ms": 1776799338522, "time": "Tue Apr 21 19:22:18 2026", "jobs": [{"jobname": "read_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_512b/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 11458560, "io_kbytes": 11190, "bw_bytes": 2291253, "bw": 2237, "iops": 4475.104979, "runtime": 5001, "total_ios": 22380, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 46670, "max": 18465435, "mean": 101137.253887, "stddev": 157674.612678, "N": 22380}, "clat_ns": {"min": 4540, "max": 13747208, "mean": 110880.412958, "stddev": 276131.78702, "N": 22380, "percentile": {"1.000000": 47360, "5.000000": 54016, "10.000000": 55040, "20.000000": 59648, "30.000000": 63744, "40.000000": 71168, "50.000000": 82432, "60.000000": 89600, "70.000000": 96768, "80.000000": 123392, "90.000000": 148480, "95.000000": 177152, "99.000000": 288768, "99.500000": 1564672, "99.900000": 4489216, "99.950000": 5668864, "99.990000": 7176192}}, "lat_ns": {"min": 132581, "max": 18887568, "mean": 214647.238829, "stddev": 322014.107989, "N": 22380}, "bw_min": 1205, "bw_max": 2724, "bw_agg": 94.835795, "bw_mean": 2122.5, "bw_dev": 710.610301, "bw_samples": 4, "iops_min": 2410, "iops_max": 5449, "iops_mean": 4245.25, "iops_stddev": 1421.502814, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 18.32, "sys_cpu": 42.52, "ctx": 22289, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.773012, "20": 0.080429, "50": 0.245755, "100": 71.027703, "250": 26.671135, "500": 0.375335, "750": 0.098302, "1000": 0.098302}, "latency_ms": {"2": 0.236819, "4": 0.254692, "10": 0.134048, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22342, "write_ios": 33, "read_merges": 0, "write_merges": 26, "read_ticks": 2886, "write_ticks": 2290, "in_queue": 5182, "util": 76.53202}]} 2026-04-21 19:21:56.03327 2026-04-21 19:10:15.083464 +469 12 loader /usr/bin/fio --name randread_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799362, "timestamp_ms": 1776799362185, "time": "Tue Apr 21 19:22:42 2026", "jobs": [{"jobname": "randread_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_512b/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 12033536, "io_kbytes": 11751, "bw_bytes": 2406225, "bw": 2349, "iops": 4699.660068, "runtime": 5001, "total_ios": 23503, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 82281, "max": 1289088, "mean": 96312.789048, "stddev": 30588.099826, "N": 23503}, "clat_ns": {"min": 5600, "max": 12305010, "mean": 104564.297409, "stddev": 255297.569828, "N": 23503, "percentile": {"1.000000": 52480, "5.000000": 54528, "10.000000": 55552, "20.000000": 59136, "30.000000": 64768, "40.000000": 68096, "50.000000": 75264, "60.000000": 86528, "70.000000": 90624, "80.000000": 97792, "90.000000": 114176, "95.000000": 150528, "99.000000": 847872, "99.500000": 1630208, "99.900000": 3948544, "99.950000": 5210112, "99.990000": 6717440}}, "lat_ns": {"min": 136021, "max": 12414321, "mean": 202854.328299, "stddev": 260860.966076, "N": 23503}, "bw_min": 1691, "bw_max": 2774, "bw_agg": 95.709088, "bw_mean": 2249.5, "bw_dev": 569.772177, "bw_samples": 4, "iops_min": 3382, "iops_max": 5549, "iops_mean": 4499.25, "iops_stddev": 1139.85127, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 14.18, "sys_cpu": 52.08, "ctx": 23374, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.148917, "20": 0.110624, "50": 0.268051, "100": 81.517253, "250": 16.483002, "500": 0.323363, "750": 0.119134, "1000": 0.106369}, "latency_ms": {"2": 0.591414, "4": 0.238267, "10": 0.08935, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 22381, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 2908, "write_ticks": 0, "in_queue": 2908, "util": 75.653595}]} 2026-04-21 19:22:20.097617 2026-04-21 19:10:15.083464 +500 12 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-21 19:26:16' --until '2026-04-21 19:28:35' 0 Systemd errors records 2026-04-21 19:26:16.731247 2026-04-21 19:28:35.212645 +574 18 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-22 08:11:34' --until '2026-04-22 08:31:52' 0 OOM records. 2026-04-22 08:11:34.83336 2026-04-22 08:31:52.212604 +575 18 observer sudo /usr/bin/journalctl --priority err --grep systemd --case-sensitive=no --since '2026-04-22 08:11:34' --until '2026-04-22 08:31:52' 0 Systemd errors records 2026-04-22 08:11:34.83336 2026-04-22 08:31:52.212604 +470 12 loader /usr/bin/fio --name randwrite_512b --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 512b --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799371, "timestamp_ms": 1776799371913, "time": "Tue Apr 21 19:22:51 2026", "jobs": [{"jobname": "randwrite_512b", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_512b", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "512b", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_512b/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 5813248, "io_kbytes": 5677, "bw_bytes": 1162417, "bw": 1135, "iops": 2270.345931, "runtime": 5001, "total_ios": 11354, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 95720, "max": 8338527, "mean": 417934.037872, "stddev": 359685.967899, "N": 11354}, "clat_ns": {"min": 4590, "max": 564844, "mean": 7827.019641, "stddev": 16868.383199, "N": 11354, "percentile": {"1.000000": 4768, "5.000000": 4896, "10.000000": 4960, "20.000000": 5024, "30.000000": 5152, "40.000000": 5216, "50.000000": 5344, "60.000000": 5408, "70.000000": 5536, "80.000000": 5792, "90.000000": 9152, "95.000000": 9792, "99.000000": 115200, "99.500000": 130560, "99.900000": 209920, "99.950000": 226304, "99.990000": 313344}}, "lat_ns": {"min": 182041, "max": 8354468, "mean": 429116.17703, "stddev": 359974.251876, "N": 11354}, "bw_min": 1092, "bw_max": 1334, "bw_agg": 100.0, "bw_mean": 1226.0, "bw_dev": 105.388171, "bw_samples": 4, "iops_min": 2184, "iops_max": 2669, "iops_mean": 2452.5, "iops_stddev": 211.030014, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.48, "sys_cpu": 69.5, "ctx": 11376, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 95.89572, "20": 2.474899, "50": 0.167342, "100": 0.140919, "250": 1.294698, "500": 0.017615, "750": 0.01, "1000": 0.0}, "latency_ms": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 11052, "read_merges": 0, "write_merges": 19147, "read_ticks": 0, "write_ticks": 1710, "in_queue": 1711, "util": 71.230677}]} 2026-04-21 19:22:43.857379 2026-04-21 19:10:15.083464 +471 12 loader /usr/bin/fio --name write_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799383, "timestamp_ms": 1776799383172, "time": "Tue Apr 21 19:23:03 2026", "jobs": [{"jobname": "write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 57319424, "io_kbytes": 55976, "bw_bytes": 11461592, "bw": 11192, "iops": 2798.240352, "runtime": 5001, "total_ios": 13994, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 93891, "max": 5075509, "mean": 113828.431971, "stddev": 61731.105422, "N": 13994}, "clat_ns": {"min": 5650, "max": 12724822, "mean": 229432.469058, "stddev": 279507.396688, "N": 13994, "percentile": {"1.000000": 150528, "5.000000": 162816, "10.000000": 166912, "20.000000": 177152, "30.000000": 185344, "40.000000": 187392, "50.000000": 193536, "60.000000": 199680, "70.000000": 209920, "80.000000": 234496, "90.000000": 276480, "95.000000": 317440, "99.000000": 806912, "99.500000": 1810432, "99.900000": 4358144, "99.950000": 5275648, "99.990000": 7241728}}, "lat_ns": {"min": 236501, "max": 12829223, "mean": 345985.415607, "stddev": 289027.049425, "N": 13994}, "bw_min": 11480, "bw_max": 12623, "bw_agg": 100.0, "bw_mean": 12166.75, "bw_dev": 509.429338, "bw_samples": 4, "iops_min": 2870, "iops_max": 3155, "iops_mean": 3041.5, "iops_stddev": 127.133788, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.12, "sys_cpu": 30.34, "ctx": 14003, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.15721, "20": 0.19294, "50": 0.0, "100": 0.0, "250": 84.929255, "500": 13.48435, "750": 0.178648, "1000": 0.221524}, "latency_ms": {"2": 0.371588, "4": 0.307275, "10": 0.150064, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 13807, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 2149, "in_queue": 2150, "util": 79.244525}]} 2026-04-21 19:22:54.705367 2026-04-21 19:10:15.083464 +472 12 loader /usr/bin/fio --name read_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799400, "timestamp_ms": 1776799400501, "time": "Tue Apr 21 19:23:20 2026", "jobs": [{"jobname": "read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 96210944, "io_kbytes": 93956, "bw_bytes": 19238341, "bw": 18787, "iops": 4696.860628, "runtime": 5001, "total_ios": 23489, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 45130, "max": 15590889, "mean": 95549.701605, "stddev": 111081.680376, "N": 23489}, "clat_ns": {"min": 5820, "max": 158910065, "mean": 105051.318021, "stddev": 1048763.07093, "N": 23489, "percentile": {"1.000000": 52480, "5.000000": 54016, "10.000000": 56064, "20.000000": 62720, "30.000000": 75264, "40.000000": 80384, "50.000000": 86528, "60.000000": 90624, "70.000000": 94720, "80.000000": 108032, "90.000000": 126464, "95.000000": 142336, "99.000000": 240640, "99.500000": 403456, "99.900000": 3325952, "99.950000": 3883008, "99.990000": 6127616}}, "lat_ns": {"min": 135901, "max": 159060296, "mean": 203112.145728, "stddev": 1055729.286387, "N": 23489}, "bw_min": 18664, "bw_max": 20831, "bw_agg": 100.0, "bw_mean": 19768.75, "bw_dev": 940.558478, "bw_samples": 4, "iops_min": 4666, "iops_max": 5207, "iops_mean": 4942.0, "iops_stddev": 234.857404, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 21.48, "sys_cpu": 38.76, "ctx": 23451, "majf": 0, "minf": 24, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.153263, "20": 0.106433, "50": 0.149006, "100": 75.052152, "250": 23.628081, "500": 0.476819, "750": 0.080889, "1000": 0.042573}, "latency_ms": {"2": 0.149006, "4": 0.119205, "10": 0.038316, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23489, "write_ios": 46, "read_merges": 0, "write_merges": 18, "read_ticks": 2930, "write_ticks": 2666, "in_queue": 5597, "util": 85.518323}]} 2026-04-21 19:23:04.880008 2026-04-21 19:10:15.083464 +473 12 loader /usr/bin/fio --name randread_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799417, "timestamp_ms": 1776799417316, "time": "Tue Apr 21 19:23:37 2026", "jobs": [{"jobname": "randread_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 112214016, "io_kbytes": 109584, "bw_bytes": 22438315, "bw": 21912, "iops": 5478.104379, "runtime": 5001, "total_ios": 27396, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 77720, "max": 5214749, "mean": 89505.995656, "stddev": 34914.230173, "N": 27396}, "clat_ns": {"min": 5420, "max": 7253392, "mean": 82397.771828, "stddev": 139011.126645, "N": 27396, "percentile": {"1.000000": 50432, "5.000000": 53504, "10.000000": 56064, "20.000000": 58112, "30.000000": 61696, "40.000000": 64768, "50.000000": 70144, "60.000000": 81408, "70.000000": 86528, "80.000000": 89600, "90.000000": 97792, "95.000000": 110080, "99.000000": 173056, "99.500000": 228352, "99.900000": 1875968, "99.950000": 4014080, "99.990000": 5865472}}, "lat_ns": {"min": 128910, "max": 7378662, "mean": 173789.559461, "stddev": 145797.487595, "N": 27396}, "bw_min": 19652, "bw_max": 23452, "bw_agg": 99.204027, "bw_mean": 21738.25, "bw_dev": 1652.222417, "bw_samples": 4, "iops_min": 4913, "iops_max": 5863, "iops_mean": 5434.5, "iops_stddev": 413.013721, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 5.08, "sys_cpu": 66.42, "ctx": 27264, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.156957, "20": 0.010951, "50": 0.532925, "100": 90.797927, "250": 8.04862, "500": 0.146007, "750": 0.040152, "1000": 0.047452}, "latency_ms": {"2": 0.131406, "4": 0.036502, "10": 0.051102, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 26691, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 3247, "write_ticks": 0, "in_queue": 3247, "util": 83.990346}]} 2026-04-21 19:23:22.250961 2026-04-21 19:10:15.083464 +474 12 loader /usr/bin/fio --name randwrite_4k --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799427, "timestamp_ms": 1776799427021, "time": "Tue Apr 21 19:23:47 2026", "jobs": [{"jobname": "randwrite_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4k", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 42258432, "io_kbytes": 41268, "bw_bytes": 8449996, "bw": 8251, "iops": 2062.987403, "runtime": 5001, "total_ios": 10317, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 70371, "max": 206770128, "mean": 134689.773093, "stddev": 2036907.107843, "N": 10317}, "clat_ns": {"min": 9360, "max": 21272731, "mean": 333675.880973, "stddev": 437805.431692, "N": 10317, "percentile": {"1.000000": 181248, "5.000000": 195584, "10.000000": 205824, "20.000000": 222208, "30.000000": 236544, "40.000000": 257024, "50.000000": 280576, "60.000000": 296960, "70.000000": 309248, "80.000000": 329728, "90.000000": 387072, "95.000000": 444416, "99.000000": 2375680, "99.500000": 3522560, "99.900000": 5144576, "99.950000": 6258688, "99.990000": 7831552}}, "lat_ns": {"min": 266882, "max": 207369741, "mean": 471062.031114, "stddev": 2087703.429906, "N": 10317}, "bw_min": 6101, "bw_max": 10081, "bw_agg": 100.0, "bw_mean": 8412.5, "bw_dev": 1945.888743, "bw_samples": 4, "iops_min": 1525, "iops_max": 2520, "iops_mean": 2103.0, "iops_stddev": 486.499743, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 7.0, "sys_cpu": 24.58, "ctx": 10344, "majf": 0, "minf": 17, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.029078, "20": 0.0, "50": 0.0, "100": 0.0, "250": 36.851798, "500": 59.804207, "750": 0.930503, "1000": 0.329553}, "latency_ms": {"2": 0.785112, "4": 0.988659, "10": 0.271397, "20": 0.0, "50": 0.01, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 10044, "read_merges": 0, "write_merges": 45, "read_ticks": 0, "write_ticks": 2033, "in_queue": 2255, "util": 80.787781}]} 2026-04-21 19:23:39.37064 2026-04-21 19:10:15.083464 +475 12 loader /usr/bin/fio --name write_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799438, "timestamp_ms": 1776799438020, "time": "Tue Apr 21 19:23:58 2026", "jobs": [{"jobname": "write_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_2m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9183428608, "io_kbytes": 8968192, "bw_bytes": 1836318457, "bw": 1793279, "iops": 875.624875, "runtime": 5001, "total_ios": 4379, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 191721, "max": 9782205, "mean": 289078.019182, "stddev": 223810.196688, "N": 4379}, "clat_ns": {"min": 11670, "max": 7691893, "mean": 834554.700617, "stddev": 537292.077398, "N": 4379, "percentile": {"1.000000": 432128, "5.000000": 577536, "10.000000": 602112, "20.000000": 643072, "30.000000": 675840, "40.000000": 700416, "50.000000": 724992, "60.000000": 765952, "70.000000": 806912, "80.000000": 872448, "90.000000": 995328, "95.000000": 1204224, "99.000000": 3751936, "99.500000": 4816896, "99.900000": 6455296, "99.950000": 6586368, "99.990000": 7700480}}, "lat_ns": {"min": 718164, "max": 9850506, "mean": 1127075.171957, "stddev": 587655.888164, "N": 4379}, "bw_min": 1606514, "bw_max": 1959936, "bw_agg": 98.036127, "bw_mean": 1758062.5, "bw_dev": 148355.053242, "bw_samples": 4, "iops_min": 784, "iops_max": 957, "iops_mean": 858.25, "iops_stddev": 72.587304, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.4, "sys_cpu": 23.92, "ctx": 4451, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.114181, "50": 0.091345, "100": 0.0, "250": 0.091345, "500": 0.981959, "750": 54.989724, "1000": 33.866179}, "latency_ms": {"2": 7.421786, "4": 1.598538, "10": 0.844942, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8556, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5581, "in_queue": 5581, "util": 90.638811}]} 2026-04-21 19:23:50.142774 2026-04-21 19:10:15.083464 +476 12 loader /usr/bin/fio --name read_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799456, "timestamp_ms": 1776799456074, "time": "Tue Apr 21 19:24:16 2026", "jobs": [{"jobname": "read_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_2m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 15047065600, "io_kbytes": 14694400, "bw_bytes": 3008811357, "bw": 2938292, "iops": 1434.713057, "runtime": 5001, "total_ios": 7175, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 184561, "max": 32756127, "mean": 237881.436516, "stddev": 485900.785418, "N": 7175}, "clat_ns": {"min": 5540, "max": 10365529, "mean": 442875.907178, "stddev": 369067.344258, "N": 7175, "percentile": {"1.000000": 86528, "5.000000": 264192, "10.000000": 284672, "20.000000": 342016, "30.000000": 362496, "40.000000": 378880, "50.000000": 395264, "60.000000": 411648, "70.000000": 440320, "80.000000": 477184, "90.000000": 536576, "95.000000": 610304, "99.000000": 2113536, "99.500000": 3325952, "99.900000": 4947968, "99.950000": 5406720, "99.990000": 10420224}}, "lat_ns": {"min": 456842, "max": 32789147, "mean": 685007.955679, "stddev": 601329.965256, "N": 7175}, "bw_min": 2228043, "bw_max": 3377870, "bw_agg": 97.354847, "bw_mean": 2860570.75, "bw_dev": 595110.870518, "bw_samples": 4, "iops_min": 1087, "iops_max": 1649, "iops_mean": 1396.25, "iops_stddev": 290.972364, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 11.08, "sys_cpu": 32.64, "ctx": 7275, "majf": 0, "minf": 535, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.571429, "20": 0.362369, "50": 0.0, "100": 0.181185, "250": 1.714286, "500": 81.379791, "750": 13.28223, "1000": 0.808362}, "latency_ms": {"2": 0.641115, "4": 0.752613, "10": 0.292683, "20": 0.013937, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13683, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4837, "write_ticks": 0, "in_queue": 4837, "util": 83.247898}]} 2026-04-21 19:24:01.404224 2026-04-21 19:10:15.083464 +477 12 loader /usr/bin/fio --name randread_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799472, "timestamp_ms": 1776799472407, "time": "Tue Apr 21 19:24:32 2026", "jobs": [{"jobname": "randread_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_2m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 14099152896, "io_kbytes": 13768704, "bw_bytes": 2819266725, "bw": 2753190, "iops": 1344.331134, "runtime": 5001, "total_ios": 6723, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 185601, "max": 11073443, "mean": 233816.137736, "stddev": 194058.001287, "N": 6723}, "clat_ns": {"min": 6690, "max": 184942034, "mean": 491720.526253, "stddev": 2281236.267272, "N": 6723, "percentile": {"1.000000": 115200, "5.000000": 272384, "10.000000": 296960, "20.000000": 346112, "30.000000": 366592, "40.000000": 382976, "50.000000": 403456, "60.000000": 423936, "70.000000": 456704, "80.000000": 501760, "90.000000": 577536, "95.000000": 675840, "99.000000": 2572288, "99.500000": 3620864, "99.900000": 5079040, "99.950000": 5406720, "99.990000": 185597952}}, "lat_ns": {"min": 459373, "max": 185254136, "mean": 729414.231147, "stddev": 2290328.240772, "N": 6723}, "bw_min": 2604499, "bw_max": 3316491, "bw_agg": 100.0, "bw_mean": 3055921.0, "bw_dev": 313939.410818, "bw_samples": 4, "iops_min": 1271, "iops_max": 1619, "iops_mean": 1491.75, "iops_stddev": 153.513029, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 11.137772, "sys_cpu": 31.053789, "ctx": 6829, "majf": 0, "minf": 532, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.490852, "20": 0.297486, "50": 0.014874, "100": 0.118994, "250": 1.160196, "500": 77.524914, "750": 17.031087, "1000": 1.100699}, "latency_ms": {"2": 1.011453, "4": 1.026328, "10": 0.20824, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.014874, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 13216, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 4781, "write_ticks": 0, "in_queue": 4782, "util": 81.204819}]} 2026-04-21 19:24:17.717288 2026-04-21 19:10:15.083464 +478 12 loader /usr/bin/fio --name randwrite_2m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 2m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799481, "timestamp_ms": 1776799481971, "time": "Tue Apr 21 19:24:41 2026", "jobs": [{"jobname": "randwrite_2m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_2m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "2m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_2m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9080668160, "io_kbytes": 8867840, "bw_bytes": 1808537773, "bw": 1766150, "iops": 862.378012, "runtime": 5021, "total_ios": 4330, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 195441, "max": 13395146, "mean": 294005.491455, "stddev": 367967.986062, "N": 4330}, "clat_ns": {"min": 9280, "max": 28721653, "mean": 844013.136721, "stddev": 854231.850645, "N": 4330, "percentile": {"1.000000": 403456, "5.000000": 561152, "10.000000": 585728, "20.000000": 618496, "30.000000": 643072, "40.000000": 675840, "50.000000": 708608, "60.000000": 741376, "70.000000": 774144, "80.000000": 839680, "90.000000": 970752, "95.000000": 1318912, "99.000000": 4145152, "99.500000": 4882432, "99.900000": 8224768, "99.950000": 8978432, "99.990000": 28704768}}, "lat_ns": {"min": 685924, "max": 28946195, "mean": 1143661.167206, "stddev": 932962.782341, "N": 4330}, "bw_min": 1391248, "bw_max": 1980416, "bw_agg": 100.0, "bw_mean": 1772168.6, "bw_dev": 244393.877943, "bw_samples": 5, "iops_min": 679, "iops_max": 967, "iops_mean": 865.2, "iops_stddev": 119.468406, "iops_samples": 5}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5020, "usr_cpu": 6.772908, "sys_cpu": 20.936255, "ctx": 4411, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.161663, "20": 0.207852, "50": 0.046189, "100": 0.0, "250": 0.115473, "500": 1.362587, "750": 61.247113, "1000": 27.921478}, "latency_ms": {"2": 5.727483, "4": 1.939954, "10": 1.224018, "20": 0.0, "50": 0.046189, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 8464, "read_merges": 0, "write_merges": 0, "read_ticks": 0, "write_ticks": 5542, "in_queue": 5542, "util": 91.770373}]} 2026-04-21 19:24:34.347386 2026-04-21 19:10:15.083464 +479 12 loader /usr/bin/fio --name write_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799510, "timestamp_ms": 1776799510380, "time": "Tue Apr 21 19:25:10 2026", "jobs": [{"jobname": "write_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "write_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/write/bs_4m/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 7117733888, "io_kbytes": 6950912, "bw_bytes": 1422977586, "bw": 1389626, "iops": 339.264294, "runtime": 5002, "total_ios": 1697, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 930825, "max": 811241463, "mean": 2370305.535651, "stddev": 19801757.586305, "N": 1697}, "clat_ns": {"min": 8820, "max": 26806513, "mean": 549000.063642, "stddev": 1027551.239975, "N": 1697, "percentile": {"1.000000": 148480, "5.000000": 179200, "10.000000": 195584, "20.000000": 226304, "30.000000": 252928, "40.000000": 296960, "50.000000": 501760, "60.000000": 585728, "70.000000": 634880, "80.000000": 684032, "90.000000": 798720, "95.000000": 913408, "99.000000": 3391488, "99.500000": 4423680, "99.900000": 26607616, "99.950000": 26869760, "99.990000": 26869760}}, "lat_ns": {"min": 1448188, "max": 811579914, "mean": 2926730.123159, "stddev": 19823119.687415, "N": 1697}, "bw_min": 1035252, "bw_max": 1976391, "bw_agg": 100.0, "bw_mean": 1635598.75, "bw_dev": 426067.125188, "bw_samples": 4, "iops_min": 252, "iops_max": 482, "iops_mean": 399.0, "iops_stddev": 104.233712, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 3.119376, "sys_cpu": 18.536293, "ctx": 5934, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.058928, "20": 0.058928, "50": 0.117855, "100": 0.058928, "250": 28.520919, "500": 21.037124, "750": 36.947555, "1000": 9.487331}, "latency_ms": {"2": 2.180318, "4": 0.883913, "10": 0.530348, "20": 0.0, "50": 0.117855, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 0, "write_ios": 6578, "read_merges": 0, "write_merges": 5, "read_ticks": 0, "write_ticks": 6590, "in_queue": 6590, "util": 92.721075}]} 2026-04-21 19:25:02.68549 2026-04-21 19:10:15.083464 +480 12 loader /usr/bin/fio --name read_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799537, "timestamp_ms": 1776799537725, "time": "Tue Apr 21 19:25:37 2026", "jobs": [{"jobname": "read_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "read_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/read/bs_4m/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16693329920, "io_kbytes": 16302080, "bw_bytes": 3338665984, "bw": 3260416, "iops": 796.0, "runtime": 5000, "total_ios": 3980, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 539803, "max": 15987381, "mean": 804967.14799, "stddev": 355273.441111, "N": 3980}, "clat_ns": {"min": 6470, "max": 46806807, "mean": 430630.778643, "stddev": 856563.697107, "N": 3980, "percentile": {"1.000000": 10048, "5.000000": 140288, "10.000000": 264192, "20.000000": 309248, "30.000000": 329728, "40.000000": 342016, "50.000000": 358400, "60.000000": 378880, "70.000000": 399360, "80.000000": 432128, "90.000000": 485376, "95.000000": 544768, "99.000000": 3063808, "99.500000": 3981312, "99.900000": 5668864, "99.950000": 5931008, "99.990000": 46923776}}, "lat_ns": {"min": 805584, "max": 47715422, "mean": 1242970.434673, "stddev": 964548.987407, "N": 3980}, "bw_min": 2446961, "bw_max": 3866624, "bw_agg": 100.0, "bw_mean": 3317456.75, "bw_dev": 609862.205998, "bw_samples": 4, "iops_min": 597, "iops_max": 944, "iops_mean": 809.75, "iops_stddev": 149.057875, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 1.64, "sys_cpu": 33.36, "ctx": 11903, "majf": 0, "minf": 535, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 1.005025, "20": 1.457286, "50": 0.0, "100": 0.175879, "250": 5.201005, "500": 84.095477, "750": 5.0, "1000": 0.326633}, "latency_ms": {"2": 1.105528, "4": 1.20603, "10": 0.40201, "20": 0.0, "50": 0.025126, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15886, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 5773, "write_ticks": 0, "in_queue": 5773, "util": 69.719002}]} 2026-04-21 19:25:18.793604 2026-04-21 19:10:15.083464 +481 12 loader /usr/bin/fio --name randread_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799556, "timestamp_ms": 1776799556055, "time": "Tue Apr 21 19:25:56 2026", "jobs": [{"jobname": "randread_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randread_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randread/bs_4m/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 16341008384, "io_kbytes": 15958016, "bw_bytes": 3266894918, "bw": 3190327, "iops": 778.888445, "runtime": 5002, "total_ios": 3896, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 579114, "max": 5460002, "mean": 830419.195585, "stddev": 259958.030013, "N": 3896}, "clat_ns": {"min": 5550, "max": 7341352, "mean": 430252.929671, "stddev": 467498.885755, "N": 3896, "percentile": {"1.000000": 10304, "5.000000": 138240, "10.000000": 272384, "20.000000": 309248, "30.000000": 325632, "40.000000": 342016, "50.000000": 358400, "60.000000": 374784, "70.000000": 399360, "80.000000": 432128, "90.000000": 489472, "95.000000": 585728, "99.000000": 3129344, "99.500000": 3817472, "99.900000": 5865472, "99.950000": 6651904, "99.990000": 7372800}}, "lat_ns": {"min": 841974, "max": 8163807, "mean": 1268761.473049, "stddev": 550308.844363, "N": 3896}, "bw_min": 2560000, "bw_max": 3744095, "bw_agg": 100.0, "bw_mean": 3216719.25, "bw_dev": 509726.765657, "bw_samples": 4, "iops_min": 625, "iops_max": 914, "iops_mean": 785.25, "iops_stddev": 124.433048, "iops_samples": 4}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5001, "usr_cpu": 2.319536, "sys_cpu": 33.993201, "ctx": 11677, "majf": 0, "minf": 531, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.718686, "20": 1.540041, "50": 0.077002, "100": 0.025667, "250": 4.568789, "500": 83.957906, "750": 5.338809, "1000": 0.616016}, "latency_ms": {"2": 1.180698, "4": 1.617043, "10": 0.359343, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 15127, "write_ios": 3, "read_merges": 0, "write_merges": 0, "read_ticks": 5582, "write_ticks": 4, "in_queue": 5589, "util": 75.538554}]} 2026-04-21 19:25:39.395756 2026-04-21 19:10:15.083464 +482 12 loader /usr/bin/fio --name randwrite_4m --numjobs 1 --filename variation_offset_0_3k_testfile --size 1337MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles --offset 0 --offset_increment 3k --bs 4m --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799565, "timestamp_ms": 1776799565746, "time": "Tue Apr 21 19:26:05 2026", "jobs": [{"jobname": "randwrite_4m", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "randwrite_4m", "numjobs": "1", "filename": "variation_offset_0_3k_testfile", "size": "1337MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/testfiles", "offset": "0", "offset_increment": "3k", "bs": "4m", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/variation-offset-0-3k-20260421-192144Z/randwrite/bs_4m/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 9294577664, "io_kbytes": 9076736, "bw_bytes": 1860776309, "bw": 1817164, "iops": 443.643644, "runtime": 4995, "total_ios": 2216, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 864455, "max": 16277133, "mean": 1705331.32852, "stddev": 978537.934865, "N": 2216}, "clat_ns": {"min": 9300, "max": 18320605, "mean": 522820.058664, "stddev": 624303.854824, "N": 2216, "percentile": {"1.000000": 144384, "5.000000": 166912, "10.000000": 179200, "20.000000": 199680, "30.000000": 230400, "40.000000": 333824, "50.000000": 501760, "60.000000": 552960, "70.000000": 602112, "80.000000": 684032, "90.000000": 806912, "95.000000": 995328, "99.000000": 2605056, "99.500000": 3981312, "99.900000": 6848512, "99.950000": 8159232, "99.990000": 18219008}}, "lat_ns": {"min": 1343267, "max": 25268244, "mean": 2234771.138538, "stddev": 1229344.942054, "N": 2216}, "bw_min": 1542649, "bw_max": 2048000, "bw_agg": 96.518127, "bw_mean": 1753893.75, "bw_dev": 239539.244707, "bw_samples": 4, "iops_min": 376, "iops_max": 500, "iops_mean": 427.75, "iops_stddev": 58.744503, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 4.96, "sys_cpu": 21.96, "ctx": 7741, "majf": 0, "minf": 18, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.045126, "20": 0.225632, "50": 0.045126, "100": 0.0, "250": 33.212996, "500": 16.019856, "750": 37.093863, "1000": 8.483755}, "latency_ms": {"2": 3.294224, "4": 1.083032, "10": 0.451264, "20": 0.045126, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 8584, "read_merges": 0, "write_merges": 0, "read_ticks": 5, "write_ticks": 5494, "in_queue": 5499, "util": 81.706581}]} 2026-04-21 19:25:57.858695 2026-04-21 19:10:15.083464 +483 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-21 19:26:11.993605 2026-04-21 19:26:11.99361 +487 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260421-192619Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:26:23.844277 2026-04-21 19:10:15.083464 +488 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --filename large_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260421-192619Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260421-192619Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:26:24.446104 2026-04-21 19:10:15.083464 +489 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260421-192619Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:26:41.584566 2026-04-21 19:10:15.083464 +490 12 loader /usr/bin/fio --name rand_write_4k --numjobs 1 --filename small_testfile --size 274MB --readwrite randwrite --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260421-192619Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799630, "timestamp_ms": 1776799630895, "time": "Tue Apr 21 19:27:10 2026", "jobs": [{"jobname": "rand_write_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 15, "job options": {"name": "rand_write_4k", "numjobs": "1", "filename": "small_testfile", "size": "274MB", "rw": "randwrite", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260421-192619Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "13", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260421-192619Z/randwrite/bs_4k/randwrite-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 47476736, "io_kbytes": 46364, "bw_bytes": 3651775, "bw": 3566, "iops": 891.546804, "runtime": 13001, "total_ios": 11591, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 83621, "max": 25983478, "mean": 156765.689587, "stddev": 309706.11156, "N": 11591}, "clat_ns": {"min": 6110, "max": 134793558, "mean": 944802.157881, "stddev": 1762223.421301, "N": 11591, "percentile": {"1.000000": 240640, "5.000000": 264192, "10.000000": 280576, "20.000000": 309248, "30.000000": 329728, "40.000000": 350208, "50.000000": 378880, "60.000000": 407552, "70.000000": 456704, "80.000000": 1417216, "90.000000": 2965504, "95.000000": 3817472, "99.000000": 4816896, "99.500000": 5537792, "99.900000": 8290304, "99.950000": 12910592, "99.990000": 24248320}}, "lat_ns": {"min": 286411, "max": 134969029, "mean": 1105354.744975, "stddev": 1789761.649101, "N": 11591}, "bw_min": 2677, "bw_max": 4039, "bw_agg": 99.910646, "bw_mean": 3563.916667, "bw_dev": 436.388788, "bw_samples": 12, "iops_min": 669, "iops_max": 1009, "iops_mean": 890.833333, "iops_stddev": 109.000278, "iops_samples": 12}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 13001, "usr_cpu": 1.122991, "sys_cpu": 16.721791, "ctx": 11664, "majf": 0, "minf": 21, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.319213, "20": 0.077646, "50": 0.0, "100": 0.01, "250": 1.552929, "500": 70.632387, "750": 2.959192, "1000": 1.759986}, "latency_ms": {"2": 7.462687, "4": 12.052454, "10": 3.105858, "20": 0.03451, "50": 0.025882, "100": 0.0, "250": 0.01, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 300, "write_ios": 11439, "read_merges": 0, "write_merges": 2, "read_ticks": 117, "write_ticks": 2312, "in_queue": 2447, "util": 39.378719}]} 2026-04-21 19:26:41.263564 2026-04-21 19:10:15.083464 +491 12 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260421-192619Z/testfiles --offset_increment 3k --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:27:00.158981 2026-04-21 19:10:15.083464 +492 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --filename large_testfile --size 274MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260421-192619Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 13 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260421-192619Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:27:00.073744 2026-04-21 19:10:15.083464 +493 12 loader /usr/bin/fio --name rand_read_512b --numjobs 1 --filename small_testfile --size 274MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260421-192619Z/testfiles --bs 512b --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_512b/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_512b/randread-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:27:20.682857 2026-04-21 19:10:15.083464 +494 12 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_with_offset_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-with-offset-20260421-192619Z/testfiles --offset_increment 3k --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-with-offset-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {} 2026-04-21 19:27:36.715671 2026-04-21 19:10:15.083464 +495 12 loader /usr/bin/fio --name seq_read_1M --numjobs 1 --filename large_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260421-192619Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799687, "timestamp_ms": 1776799687412, "time": "Tue Apr 21 19:28:07 2026", "jobs": [{"jobname": "seq_read_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_1M", "numjobs": "1", "filename": "large_testfile", "size": "274MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260421-192619Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_1M/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 10350493696, "io_kbytes": 10107904, "bw_bytes": 862469268, "bw": 842255, "iops": 822.51479, "runtime": 12001, "total_ios": 9871, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 120830, "max": 19837863, "mean": 196310.424476, "stddev": 276122.84423, "N": 9871}, "clat_ns": {"min": 7260, "max": 3000922520, "mean": 994323.189343, "stddev": 30248390.238209, "N": 9871, "percentile": {"1.000000": 183296, "5.000000": 205824, "10.000000": 218112, "20.000000": 236544, "30.000000": 252928, "40.000000": 268288, "50.000000": 288768, "60.000000": 321536, "70.000000": 366592, "80.000000": 602112, "90.000000": 1826816, "95.000000": 3358720, "99.000000": 4554752, "99.500000": 5144576, "99.900000": 13565952, "99.950000": 21364736, "99.990000": 3003121664}}, "lat_ns": {"min": 285301, "max": 3001062220, "mean": 1193171.983487, "stddev": 30249499.833448, "N": 9871}, "bw_min": 663597, "bw_max": 1491968, "bw_agg": 100.0, "bw_mean": 975188.555556, "bw_dev": 302011.07328, "bw_samples": 9, "iops_min": 648, "iops_max": 1457, "iops_mean": 952.111111, "iops_stddev": 294.952303, "iops_samples": 9}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 6.991667, "sys_cpu": 16.416667, "ctx": 10751, "majf": 0, "minf": 279, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.435619, "20": 0.040523, "50": 0.0, "100": 0.010131, "250": 28.254483, "500": 48.74886, "750": 7.283963, "1000": 1.722217}, "latency_ms": {"2": 4.102928, "4": 7.111741, "10": 2.188228, "20": 0.040523, "50": 0.040523, "100": 0.0, "250": 0.010131, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.010131}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 23558, "write_ios": 0, "read_merges": 0, "write_merges": 0, "read_ticks": 8078, "write_ticks": 0, "in_queue": 8078, "util": 61.412453}]} 2026-04-21 19:27:38.041768 2026-04-21 19:10:15.083464 +496 12 loader /usr/bin/fio --name rand_read_4k --numjobs 1 --filename small_testfile --size 274MB --readwrite randread --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/small-20260421-192619Z/testfiles --bs 4k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799694, "timestamp_ms": 1776799694901, "time": "Tue Apr 21 19:28:14 2026", "jobs": [{"jobname": "rand_read_4k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "rand_read_4k", "numjobs": "1", "filename": "small_testfile", "size": "274MB", "rw": "randread", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/small-20260421-192619Z/testfiles", "bs": "4k", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/small-20260421-192619Z/randread/bs_4k/randread-iodepth-1-numjobs-1"}, "read": {"io_bytes": 124755968, "io_kbytes": 121832, "bw_bytes": 10395464, "bw": 10151, "iops": 2537.95517, "runtime": 12001, "total_ios": 30458, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 4570, "max": 6056794, "mean": 113370.527316, "stddev": 80558.363436, "N": 30458}, "clat_ns": {"min": 1270, "max": 11080273, "mean": 262605.312693, "stddev": 650732.040496, "N": 30458, "percentile": {"1.000000": 2160, "5.000000": 3440, "10.000000": 6048, "20.000000": 85504, "30.000000": 102912, "40.000000": 110080, "50.000000": 117248, "60.000000": 130560, "70.000000": 150528, "80.000000": 175104, "90.000000": 321536, "95.000000": 1236992, "99.000000": 3981312, "99.500000": 4816896, "99.900000": 5603328, "99.950000": 6586368, "99.990000": 10158080}}, "lat_ns": {"min": 6590, "max": 14481332, "mean": 378352.481253, "stddev": 663343.155917, "N": 30458}, "bw_min": 6125, "bw_max": 21180, "bw_agg": 100.0, "bw_mean": 10372.363636, "bw_dev": 4558.504958, "bw_samples": 11, "iops_min": 1531, "iops_max": 5295, "iops_mean": 2592.909091, "iops_stddev": 1139.571889, "iops_samples": 11}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12001, "usr_cpu": 4.341305, "sys_cpu": 36.188651, "ctx": 28392, "majf": 0, "minf": 19, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.925865, "4": 7.978199, "10": 1.592357, "20": 0.045965, "50": 0.078797, "100": 15.509882, "250": 60.299429, "500": 7.541533, "750": 0.420251, "1000": 0.200276}, "latency_ms": {"2": 2.711931, "4": 1.723685, "10": 0.958697, "20": 0.013133, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 29425, "write_ios": 3, "read_merges": 0, "write_merges": 0, "read_ticks": 7960, "write_ticks": 4, "in_queue": 7967, "util": 49.251359}]} 2026-04-21 19:27:54.122232 2026-04-21 19:10:15.083464 +497 12 loader /usr/bin/fio --name seq_read_256k --numjobs 1 --filename large_testfile --size 274MB --readwrite read --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/large-20260421-192619Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 12 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799711, "timestamp_ms": 1776799711529, "time": "Tue Apr 21 19:28:31 2026", "jobs": [{"jobname": "seq_read_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 13, "job options": {"name": "seq_read_256k", "numjobs": "1", "filename": "large_testfile", "size": "274MB", "rw": "read", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/large-20260421-192619Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "12", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/large-20260421-192619Z/read/bs_256k/read-iodepth-1-numjobs-1"}, "read": {"io_bytes": 11480334336, "io_kbytes": 11211264, "bw_bytes": 956614810, "bw": 934194, "iops": 3649.1959, "runtime": 12001, "total_ios": 43794, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 105001, "max": 3977552, "mean": 122110.979792, "stddev": 48129.516486, "N": 43794}, "clat_ns": {"min": 5500, "max": 7927375, "mean": 140918.696328, "stddev": 316984.902833, "N": 43794, "percentile": {"1.000000": 81408, "5.000000": 86528, "10.000000": 87552, "20.000000": 88576, "30.000000": 90624, "40.000000": 93696, "50.000000": 98816, "60.000000": 102912, "70.000000": 109056, "80.000000": 122368, "90.000000": 154624, "95.000000": 191488, "99.000000": 1351680, "99.500000": 2703360, "99.900000": 4554752, "99.950000": 4882432, "99.990000": 6324224}}, "lat_ns": {"min": 186311, "max": 8092896, "mean": 265174.07364, "stddev": 325362.327078, "N": 43794}, "bw_min": 426496, "bw_max": 1148803, "bw_agg": 98.352147, "bw_mean": 918800.090909, "bw_dev": 252155.619564, "bw_samples": 11, "iops_min": 1666, "iops_max": 4487, "iops_mean": 3588.909091, "iops_stddev": 985.088875, "iops_samples": 11}, "write": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 12000, "usr_cpu": 11.158333, "sys_cpu": 52.5, "ctx": 43808, "majf": 0, "minf": 83, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.18724, "20": 0.038818, "50": 0.0, "100": 53.415993, "250": 44.405626, "500": 0.54117, "750": 0.148422, "1000": 0.070786}, "latency_ms": {"2": 0.497785, "4": 0.463534, "10": 0.230625, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 43682, "write_ios": 19, "read_merges": 0, "write_merges": 2, "read_ticks": 7071, "write_ticks": 10, "in_queue": 7085, "util": 73.490378}]} 2026-04-21 19:28:11.248847 2026-04-21 19:10:15.083464 +498 12 observer sudo /usr/bin/systemctl --failed --no-legend ["chronyd.service"] Failed systemd services. 2026-04-21 19:28:36.853415 2026-04-21 19:28:36.853419 +499 12 observer sudo /usr/bin/journalctl --grep 'Out of memory|OOM' --case-sensitive=no --since '2026-04-21 19:26:16' --until '2026-04-21 19:28:35' 40 OOM records. 2026-04-21 19:26:16.731247 2026-04-21 19:28:35.212645 +501 12 loader /usr/bin/fio --name seq_write_1M --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260421-192842Z/testfiles --bs 1M --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799731, "timestamp_ms": 1776799731813, "time": "Tue Apr 21 19:28:51 2026", "jobs": [{"jobname": "seq_write_1M", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_1M", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260421-192842Z/testfiles", "bs": "1M", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_1M/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 10720641024, "io_kbytes": 10469376, "bw_bytes": 2143699464, "bw": 2093456, "iops": 2044.391122, "runtime": 5001, "total_ios": 10224, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 142051, "max": 12183159, "mean": 178781.870012, "stddev": 163735.492855, "N": 10224}, "clat_ns": {"min": 5870, "max": 7693444, "mean": 295449.610818, "stddev": 239663.812842, "N": 10224, "percentile": {"1.000000": 195584, "5.000000": 214016, "10.000000": 220160, "20.000000": 228352, "30.000000": 238592, "40.000000": 248832, "50.000000": 264192, "60.000000": 276480, "70.000000": 296960, "80.000000": 321536, "90.000000": 358400, "95.000000": 399360, "99.000000": 765952, "99.500000": 1220608, "99.900000": 4227072, "99.950000": 4882432, "99.990000": 5799936}}, "lat_ns": {"min": 344082, "max": 13298656, "mean": 478172.742958, "stddev": 313183.708361, "N": 10224}, "bw_min": 1393294, "bw_max": 2393766, "bw_agg": 96.850734, "bw_mean": 2027528.75, "bw_dev": 455555.42083, "bw_samples": 4, "iops_min": 1360, "iops_max": 2337, "iops_mean": 1979.5, "iops_stddev": 444.840421, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.26, "sys_cpu": 31.78, "ctx": 10319, "majf": 0, "minf": 22, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.127152, "20": 0.166275, "50": 0.0, "100": 0.01, "250": 40.385368, "500": 57.130282, "750": 0.978091, "1000": 0.625978}, "latency_ms": {"2": 0.205399, "4": 0.244523, "10": 0.127152, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 1, "write_ios": 9942, "read_merges": 0, "write_merges": 0, "read_ticks": 21, "write_ticks": 3118, "in_queue": 3138, "util": 72.266881}]} 2026-04-21 19:28:44.047872 2026-04-21 19:10:15.083464 +502 12 loader /usr/bin/fio --name seq_write_256k --numjobs 1 --size 100MB --readwrite write --output-format json --ioengine libaio --direct 1 --directory /tmp/imgtests-fio/nightly-20260421-192842Z/testfiles --bs 256k --iodepth 1 --group_reporting --time_based --runtime 5 --unlink 1 --log_avg_msec 1000 --write_bw_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_iops_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1 --write_lat_log /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1 --output /tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1.json --eta never {"fio version": "fio-3.23", "timestamp": 1776799741, "timestamp_ms": 1776799741607, "time": "Tue Apr 21 19:29:01 2026", "jobs": [{"jobname": "seq_write_256k", "groupid": 0, "error": 0, "eta": 0, "elapsed": 6, "job options": {"name": "seq_write_256k", "numjobs": "1", "size": "100MB", "rw": "write", "ioengine": "libaio", "direct": "1", "directory": "/tmp/imgtests-fio/nightly-20260421-192842Z/testfiles", "bs": "256k", "iodepth": "1", "runtime": "5", "unlink": "1", "log_avg_msec": "1000", "write_bw_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_iops_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1", "write_lat_log": "/tmp/imgtests-fio/nightly-20260421-192842Z/write/bs_256k/write-iodepth-1-numjobs-1"}, "read": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "write": {"io_bytes": 4237557760, "io_kbytes": 4138240, "bw_bytes": 847342083, "bw": 827482, "iops": 3232.353529, "runtime": 5001, "total_ios": 16165, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 101361, "max": 7248831, "mean": 126274.463903, "stddev": 93728.788107, "N": 16165}, "clat_ns": {"min": 5210, "max": 10055117, "mean": 169760.623198, "stddev": 296026.715693, "N": 16165, "percentile": {"1.000000": 103936, "5.000000": 109056, "10.000000": 111104, "20.000000": 115200, "30.000000": 119296, "40.000000": 123392, "50.000000": 129536, "60.000000": 136192, "70.000000": 148480, "80.000000": 179200, "90.000000": 211968, "95.000000": 238592, "99.000000": 626688, "99.500000": 2244608, "99.900000": 4489216, "99.950000": 6193152, "99.990000": 7766016}}, "lat_ns": {"min": 196481, "max": 10228668, "mean": 298688.338447, "stddev": 316359.409595, "N": 16165}, "bw_min": 607488, "bw_max": 942929, "bw_agg": 95.160925, "bw_mean": 787440.0, "bw_dev": 165647.270743, "bw_samples": 4, "iops_min": 2373, "iops_max": 3683, "iops_mean": 3075.75, "iops_stddev": 646.851541, "iops_samples": 4}, "trim": {"io_bytes": 0, "io_kbytes": 0, "bw_bytes": 0, "bw": 0, "iops": 0.0, "runtime": 0, "total_ios": 0, "short_ios": 0, "drop_ios": 0, "slat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "clat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}, "bw_min": 0, "bw_max": 0, "bw_agg": 0.0, "bw_mean": 0.0, "bw_dev": 0.0, "bw_samples": 0, "iops_min": 0, "iops_max": 0, "iops_mean": 0.0, "iops_stddev": 0.0, "iops_samples": 0}, "sync": {"total_ios": 0, "lat_ns": {"min": 0, "max": 0, "mean": 0.0, "stddev": 0.0, "N": 0}}, "job_runtime": 5000, "usr_cpu": 10.62, "sys_cpu": 38.82, "ctx": 16199, "majf": 0, "minf": 20, "iodepth_level": {"1": 100.0, "2": 0.0, "4": 0.0, "8": 0.0, "16": 0.0, "32": 0.0, ">=64": 0.0}, "iodepth_submit": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "iodepth_complete": {"0": 0.0, "4": 100.0, "8": 0.0, "16": 0.0, "32": 0.0, "64": 0.0, ">=64": 0.0}, "latency_ns": {"2": 0.0, "4": 0.0, "10": 0.0, "20": 0.0, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0}, "latency_us": {"2": 0.0, "4": 0.0, "10": 0.426848, "20": 0.068048, "50": 0.012372, "100": 0.173214, "250": 95.539746, "500": 2.635323, "750": 0.222703, "1000": 0.068048}, "latency_ms": {"2": 0.30931, "4": 0.402103, "10": 0.136097, "20": 0.01, "50": 0.0, "100": 0.0, "250": 0.0, "500": 0.0, "750": 0.0, "1000": 0.0, "2000": 0.0, ">=2000": 0.0}, "latency_depth": 1, "latency_target": 0, "latency_percentile": 100.0, "latency_window": 0}], "disk_util": [{"name": "sda", "read_ios": 16, "write_ios": 15721, "read_merges": 0, "write_merges": 2, "read_ticks": 4, "write_ticks": 2764, "in_queue": 2769, "util": 71.339626}]} 2026-04-21 19:28:53.954401 2026-04-21 19:10:15.083464 +\. diff --git a/metabase_prototype/db/init/backup_init.sh b/metabase_prototype/db/init/backup_init.sh new file mode 100755 index 00000000..03511a5b --- /dev/null +++ b/metabase_prototype/db/init/backup_init.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +echo "LOADING DUMP FILE" + +psql -U metabase -d postgres -c "DROP DATABASE metabase;" +psql -U metabase -d postgres -c "CREATE DATABASE metabase;" + +pg_restore -c -U metabase -d metabase /docker-entrypoint-initdb.d/def.dump diff --git a/metabase_prototype/docker-compose.yml b/metabase_prototype/docker-compose.yml new file mode 100644 index 00000000..7b7addda --- /dev/null +++ b/metabase_prototype/docker-compose.yml @@ -0,0 +1,53 @@ +services: + imgtests-postgres: + image: postgres:17.7 + restart: unless-stopped + environment: + POSTGRES_USER: ${POSTGRES_USER} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + POSTGRES_DB: ${POSTGRES_DB} + MVP_RESULTS_DB: ${MVP_RESULTS_DB} + ports: + - "${POSTGRES_PORT}:5432" + volumes: + - ${POSTGRES_DATA_VOLUME:-postgres_data}:/var/lib/postgresql/data + - ./db/init:/docker-entrypoint-initdb.d:ro + healthcheck: + test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"] + interval: 5s + timeout: 5s + retries: 20 + + imgtests-metabase-meta-db: + image: postgres:17.7 + environment: + POSTGRES_DB: ${METABASE_META_DB_NAME} + POSTGRES_USER: ${METABASE_META_USER} + POSTGRES_PASSWORD: ${METABASE_META_PASS} + PGPORT: ${METABASE_META_DB_PORT} + volumes: + - ${METABASE_META_VOLUME}:/var/lib/postgresql/data + command: -p ${METABASE_META_DB_PORT} + restart: unless-stopped + + imgtests-metabase: + image: metabase/metabase:v0.61.2.6 + depends_on: + - imgtests-metabase-meta-db + - imgtests-postgres + environment: + MB_DB_TYPE: postgres + MB_DB_DBNAME: ${METABASE_META_DB_NAME} + MB_DB_PORT: ${METABASE_META_DB_PORT} + MB_DB_USER: ${METABASE_META_USER} + MB_DB_PASS: ${METABASE_META_PASS} + MB_DB_HOST: imgtests-metabase-meta-db + ports: + - "${METABASE_PORT}:3000" + volumes: + - ${METABASE_APP_VOLUME}:/metabase-data + +volumes: + postgres_data: + metabase_app: + metabase_meta_data: diff --git a/metabase_prototype/metabase_backup.dump b/metabase_prototype/metabase_backup.dump new file mode 100644 index 00000000..33b2c93b Binary files /dev/null and b/metabase_prototype/metabase_backup.dump differ diff --git a/metabase_prototype/queries/01_subsystems.sql b/metabase_prototype/queries/01_subsystems.sql new file mode 100644 index 00000000..aee69f26 --- /dev/null +++ b/metabase_prototype/queries/01_subsystems.sql @@ -0,0 +1,4 @@ +-- Distinct subsystems for dropdowns +SELECT DISTINCT subsystem +FROM test_run +ORDER BY 1; diff --git a/metabase_prototype/queries/02_profiles.sql b/metabase_prototype/queries/02_profiles.sql new file mode 100644 index 00000000..4b816997 --- /dev/null +++ b/metabase_prototype/queries/02_profiles.sql @@ -0,0 +1,6 @@ +-- Distinct profiles, optionally filtered by subsystem +SELECT DISTINCT profile +FROM test_run +WHERE 1=1 +AND {{subsystem}} +ORDER BY 1; diff --git a/metabase_prototype/queries/03_platforms.sql b/metabase_prototype/queries/03_platforms.sql new file mode 100644 index 00000000..3f38f11e --- /dev/null +++ b/metabase_prototype/queries/03_platforms.sql @@ -0,0 +1,7 @@ +-- Distinct target platforms, optionally filtered by subsystem/profile +SELECT DISTINCT target_platform +FROM test_run +WHERE 1=1 +AND {{subsystem}} +AND {{profile}} +ORDER BY 1; diff --git a/metabase_prototype/queries/04_os_versions.sql b/metabase_prototype/queries/04_os_versions.sql new file mode 100644 index 00000000..5e789bee --- /dev/null +++ b/metabase_prototype/queries/04_os_versions.sql @@ -0,0 +1,8 @@ +-- Distinct OS versions, optionally filtered by subsystem/profile/platform +SELECT DISTINCT os_version +FROM test_run +WHERE 1=1 +AND {{subsystem}} +AND {{profile}} +AND {{target_platform}} +ORDER BY 1; diff --git a/metabase_prototype/queries/05_tools.sql b/metabase_prototype/queries/05_tools.sql new file mode 100644 index 00000000..9e179be2 --- /dev/null +++ b/metabase_prototype/queries/05_tools.sql @@ -0,0 +1,4 @@ +-- Distinct tools +SELECT DISTINCT tool +FROM raw_result +ORDER BY 1; diff --git a/metabase_prototype/queries/06_metric_catalog.sql b/metabase_prototype/queries/06_metric_catalog.sql new file mode 100644 index 00000000..401b7fd7 --- /dev/null +++ b/metabase_prototype/queries/06_metric_catalog.sql @@ -0,0 +1,15 @@ +-- Distinct metrics available for the selected slice +SELECT DISTINCT + metric_type, + benchmark, + measure, + metric_key, + unit +FROM v_metric_catalog +WHERE 1=1 +AND {{subsystem}} +AND {{profile}} +AND {{target_platform}} +AND {{os_version}} +AND {{tool}} +ORDER BY 1, 2, 3; diff --git a/metabase_prototype/queries/10_vector_timeseries.sql b/metabase_prototype/queries/10_vector_timeseries.sql new file mode 100644 index 00000000..3c0fe8a7 --- /dev/null +++ b/metabase_prototype/queries/10_vector_timeseries.sql @@ -0,0 +1,19 @@ +-- Vector metric time series +SELECT + point_ts AS "time", + target_platform, + os_version, + series, + value, + lower_value, + upper_value +FROM v_vector_metabase +WHERE 1=1 +AND {{subsystem}} +AND {{profile}} +AND {{target_platform}} +AND {{os_version}} +AND {{tool}} +AND {{metric_key}} +AND {{point_ts}} +ORDER BY 1, 2, 3, 4; diff --git a/metabase_prototype/queries/11_vector_compare_versions.sql b/metabase_prototype/queries/11_vector_compare_versions.sql new file mode 100644 index 00000000..008c979a --- /dev/null +++ b/metabase_prototype/queries/11_vector_compare_versions.sql @@ -0,0 +1,16 @@ +-- Compare OS versions on one vector metric +SELECT + point_ts AS "time", + os_version, + target_platform, + series, + value +FROM v_vector_metabase +WHERE 1=1 +AND {{subsystem}} +AND {{profile}} +AND {{target_platform}} +AND {{tool}} +AND {{metric_key}} +AND {{point_ts}} +ORDER BY 1, 2, 3, 4; diff --git a/metabase_prototype/queries/13_scalar_summary.sql b/metabase_prototype/queries/13_scalar_summary.sql new file mode 100644 index 00000000..82737695 --- /dev/null +++ b/metabase_prototype/queries/13_scalar_summary.sql @@ -0,0 +1,22 @@ +-- Scalar metrics summary table +SELECT + benchmark, + measure, + metric_key, + unit, + AVG(value) AS avg_value, + MIN(value) AS min_value, + MAX(value) AS max_value, + stddev_samp(value) AS stddev_value, + COUNT(*) AS samples +FROM v_scalar_metabase +WHERE 1=1 +AND {{subsystem}} +AND {{profile}} +AND {{target_platform}} +AND {{os_version}} +AND {{tool}} +AND {{metric_key}} +AND {{started_at}} +GROUP BY 1, 2, 3, 4 +ORDER BY 1, 2; diff --git a/metabase_prototype/queries/14_scalar_boxplot.sql b/metabase_prototype/queries/14_scalar_boxplot.sql new file mode 100644 index 00000000..e4248631 --- /dev/null +++ b/metabase_prototype/queries/14_scalar_boxplot.sql @@ -0,0 +1,23 @@ +-- Scalar metrics for boxplot +SELECT + benchmark, + measure, + metric_key, + unit, + n, + q1, + median, + q3, + min_value, + max_value, + avg_value, + stddev_value +FROM v_scalar_boxplot +WHERE 1=1 +AND {{subsystem}} +AND {{profile}} +AND {{target_platform}} +AND {{os_version}} +AND {{tool}} +AND {{metric_key}} +ORDER BY 1, 2, 3; diff --git a/metabase_prototype/queries/fio_read.sql b/metabase_prototype/queries/fio_read.sql new file mode 100644 index 00000000..b87c89dc --- /dev/null +++ b/metabase_prototype/queries/fio_read.sql @@ -0,0 +1,32 @@ +SELECT + experiment.experiment_id, + configuration.os, + configuration.core_info, + (item ->> 'jobname') AS job_name, + (CASE + WHEN {{metric}} = 'min' THEN NULLIF((item -> 'read' -> 'lat_ns' ->> 'min')::float, 0) + WHEN {{metric}} = 'max' THEN NULLIF((item -> 'read' -> 'lat_ns' ->> 'max')::float, 0) + WHEN {{metric}} = 'stddev' THEN NULLIF((item -> 'read' -> 'lat_ns' ->> 'stddev')::float, 0) + ELSE NULLIF((item -> 'read' -> 'lat_ns' ->> 'mean')::float, 0) -- по умолчанию среднее + END) / 1000000.0 AS read_latency_ms +FROM + ( + SELECT + l.experiment_id, + jsonb_array_elements(l.result::jsonb -> 'jobs') AS item + FROM + util_run_result AS l + WHERE + l.command LIKE '%fio%' + ) subquery + JOIN experiment ON subquery.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = configuration.config_id +WHERE + 1 = 1 + AND (item->>'jobname') LIKE '%read%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] +ORDER BY + job_name; diff --git a/metabase_prototype/queries/fio_read_comp.sql b/metabase_prototype/queries/fio_read_comp.sql new file mode 100644 index 00000000..8a0b5f30 --- /dev/null +++ b/metabase_prototype/queries/fio_read_comp.sql @@ -0,0 +1,61 @@ +SELECT + sub.experiment_id, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + sub.item ->> 'jobname' AS job_name, + (CASE + WHEN {{metric}} = 'min' THEN NULLIF((sub.item -> 'read' -> 'lat_ns' ->> 'min')::float, 0) + WHEN {{metric}} = 'max' THEN NULLIF((sub.item -> 'read' -> 'lat_ns' ->> 'max')::float, 0) + WHEN {{metric}} = 'stddev' THEN NULLIF((sub.item -> 'read' -> 'lat_ns' ->> 'stddev')::float, 0) + ELSE NULLIF((sub.item -> 'read' -> 'lat_ns' ->> 'mean')::float, 0) + END) / 1000000.0 AS read_latency_ms, + 'Experiment 1' AS experiment_label +FROM ( + SELECT + l.experiment_id, + jsonb_array_elements(l.result::jsonb -> 'jobs') AS item + FROM util_run_result AS l + WHERE l.command LIKE '%fio%' +) sub +JOIN experiment ON sub.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +WHERE (sub.item ->> 'jobname') LIKE '%read%' + [[ AND os = {{os1}} ]] + [[ AND core_info = {{core_info1}} ]] + [[ AND started_at BETWEEN {{start1}} AND {{end1}} ]] + [[ AND type = {{type}} ]] + +UNION ALL + +SELECT + sub.experiment_id, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + sub.item ->> 'jobname' AS job_name, + (CASE + WHEN {{metric}} = 'min' THEN NULLIF((sub.item -> 'read' -> 'lat_ns' ->> 'min')::float, 0) + WHEN {{metric}} = 'max' THEN NULLIF((sub.item -> 'read' -> 'lat_ns' ->> 'max')::float, 0) + WHEN {{metric}} = 'stddev' THEN NULLIF((sub.item -> 'read' -> 'lat_ns' ->> 'stddev')::float, 0) + ELSE NULLIF((sub.item -> 'read' -> 'lat_ns' ->> 'mean')::float, 0) + END) / 1000000.0 AS read_latency_ms, + 'Experiment 2' AS experiment_label +FROM ( + SELECT + l.experiment_id, + jsonb_array_elements(l.result::jsonb -> 'jobs') AS item + FROM util_run_result AS l + WHERE l.command LIKE '%fio%' +) sub +JOIN experiment ON sub.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +WHERE (sub.item ->> 'jobname') LIKE '%read%' + [[ AND os = {{os2}} ]] + [[ AND core_info = {{core_info2}} ]] + [[ AND CASE WHEN {{start2}} IS NULL THEN started_at BETWEEN {{start1}} AND {{end1}} ELSE started_at BETWEEN {{start2}} AND {{end2}} END ]] + [[ AND type = {{type}} ]] + +ORDER BY job_name; diff --git a/metabase_prototype/queries/fio_write.sql b/metabase_prototype/queries/fio_write.sql new file mode 100644 index 00000000..eef4aa84 --- /dev/null +++ b/metabase_prototype/queries/fio_write.sql @@ -0,0 +1,32 @@ +SELECT + experiment.experiment_id, + configuration.os, + configuration.core_info, + (item ->> 'jobname') AS job_name, + (CASE + WHEN {{metric}} = 'min' THEN NULLIF((item -> 'write' -> 'lat_ns' ->> 'min')::float, 0) + WHEN {{metric}} = 'max' THEN NULLIF((item -> 'write' -> 'lat_ns' ->> 'max')::float, 0) + WHEN {{metric}} = 'stddev' THEN NULLIF((item -> 'write' -> 'lat_ns' ->> 'stddev')::float, 0) + ELSE NULLIF((item -> 'write' -> 'lat_ns' ->> 'mean')::float, 0) + END) / 1000000.0 AS write_latency_ms +FROM + ( + SELECT + l.experiment_id, + jsonb_array_elements(l.result::jsonb -> 'jobs') AS item + FROM + util_run_result AS l + WHERE + l.command LIKE '%fio%' + ) subquery + JOIN experiment ON subquery.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = configuration.config_id +WHERE + 1 = 1 + AND (item->>'jobname') LIKE '%write%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] +ORDER BY + job_name; diff --git a/metabase_prototype/queries/fio_write_comp.sql b/metabase_prototype/queries/fio_write_comp.sql new file mode 100644 index 00000000..d1aa2961 --- /dev/null +++ b/metabase_prototype/queries/fio_write_comp.sql @@ -0,0 +1,61 @@ +SELECT + sub.experiment_id, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + sub.item ->> 'jobname' AS job_name, + (CASE + WHEN {{metric}} = 'min' THEN NULLIF((sub.item -> 'write' -> 'lat_ns' ->> 'min')::float, 0) + WHEN {{metric}} = 'max' THEN NULLIF((sub.item -> 'write' -> 'lat_ns' ->> 'max')::float, 0) + WHEN {{metric}} = 'stddev' THEN NULLIF((sub.item -> 'write' -> 'lat_ns' ->> 'stddev')::float, 0) + ELSE NULLIF((sub.item -> 'write' -> 'lat_ns' ->> 'mean')::float, 0) + END) / 1000000.0 AS write_latency_ms, + 'Experiment 1' AS experiment_label +FROM ( + SELECT + l.experiment_id, + jsonb_array_elements(l.result::jsonb -> 'jobs') AS item + FROM util_run_result AS l + WHERE l.command LIKE '%fio%' +) sub +JOIN experiment ON sub.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +WHERE (sub.item ->> 'jobname') LIKE '%write%' + [[ AND os = {{os1}} ]] + [[ AND core_info = {{core_info1}} ]] + [[ AND started_at BETWEEN {{start1}} AND {{end1}} ]] + [[ AND type = {{type}} ]] + +UNION ALL + +SELECT + sub.experiment_id, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + sub.item ->> 'jobname' AS job_name, + (CASE + WHEN {{metric}} = 'min' THEN NULLIF((sub.item -> 'write' -> 'lat_ns' ->> 'min')::float, 0) + WHEN {{metric}} = 'max' THEN NULLIF((sub.item -> 'write' -> 'lat_ns' ->> 'max')::float, 0) + WHEN {{metric}} = 'stddev' THEN NULLIF((sub.item -> 'write' -> 'lat_ns' ->> 'stddev')::float, 0) + ELSE NULLIF((sub.item -> 'write' -> 'lat_ns' ->> 'mean')::float, 0) + END) / 1000000.0 AS write_latency_ms, + 'Experiment 2' AS experiment_label +FROM ( + SELECT + l.experiment_id, + jsonb_array_elements(l.result::jsonb -> 'jobs') AS item + FROM util_run_result AS l + WHERE l.command LIKE '%fio%' +) sub +JOIN experiment ON sub.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +WHERE (sub.item ->> 'jobname') LIKE '%write%' + [[ AND os = {{os2}} ]] + [[ AND core_info = {{core_info2}} ]] + [[ AND CASE WHEN {{start2}} IS NULL THEN started_at BETWEEN {{start1}} AND {{end1}} ELSE started_at BETWEEN {{start2}} AND {{end2}} END ]] + [[ AND type = {{type}} ]] + +ORDER BY job_name; diff --git a/metabase_prototype/queries/iperf3_comp.sql b/metabase_prototype/queries/iperf3_comp.sql new file mode 100644 index 00000000..85519f63 --- /dev/null +++ b/metabase_prototype/queries/iperf3_comp.sql @@ -0,0 +1,41 @@ +SELECT + (interval_item->'sum'->>'start')::float AS interval_start, + (interval_item->'sum'->>'bits_per_second')::float AS bits_per_second, + 'Experiment 1' AS experiment_label, + "configuration".os AS os, + "configuration".core_info AS core_info, + experiment.started_at +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'client'->'intervals' +) AS interval_item +WHERE l.command LIKE '%iperf3%' + [[ AND os = {{os1}} ]] + [[ AND core_info = {{core_info1}} ]] + [[ AND started_at BETWEEN {{start1}} AND {{end1}} ]] + [[ AND type = {{type}} ]] + +UNION ALL + +SELECT + (interval_item->'sum'->>'start')::float AS interval_start, + (interval_item->'sum'->>'bits_per_second')::float AS bits_per_second, + 'Experiment 2' AS experiment_label, + "configuration".os, + "configuration".core_info, + experiment.started_at +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'client'->'intervals' +) AS interval_item +WHERE l.command LIKE '%iperf3%' + [[ AND os = {{os2}} ]] + [[ AND core_info = {{core_info2}} ]] + [[ AND CASE WHEN {{start2}} IS NULL THEN started_at BETWEEN {{start1}} AND {{end1}} ELSE started_at BETWEEN {{start2}} AND {{end2}} END ]] + [[ AND type = {{type}} ]] + +ORDER BY interval_start diff --git a/metabase_prototype/queries/iperf3_line.sql b/metabase_prototype/queries/iperf3_line.sql new file mode 100644 index 00000000..3cbbaa81 --- /dev/null +++ b/metabase_prototype/queries/iperf3_line.sql @@ -0,0 +1,21 @@ +SELECT + (interval_item->'sum'->>'start')::float AS interval_start, + (interval_item->'sum'->>'bits_per_second')::float AS bits_per_second, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + l.command, + experiment.experiment_id +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'client'->'intervals' +) AS interval_item +WHERE l.command LIKE '%iperf3%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{type}} ]] +ORDER BY interval_start diff --git a/metabase_prototype/queries/iperf3_tcp_box_plot.sql b/metabase_prototype/queries/iperf3_tcp_box_plot.sql new file mode 100644 index 00000000..6409a7a3 --- /dev/null +++ b/metabase_prototype/queries/iperf3_tcp_box_plot.sql @@ -0,0 +1,22 @@ +SELECT + (interval_item->'sum'->>'start')::float AS interval_start, + (interval_item->'sum'->>'bits_per_second')::float AS bits_per_second, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + l.command, + experiment.experiment_id +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'client'->'intervals' +) AS interval_item +WHERE l.command LIKE '%iperf3%' + AND l.command NOT LIKE '%--udp%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] +ORDER BY interval_start diff --git a/metabase_prototype/queries/iperf3_udp_box_plot.sql b/metabase_prototype/queries/iperf3_udp_box_plot.sql new file mode 100644 index 00000000..a2e54913 --- /dev/null +++ b/metabase_prototype/queries/iperf3_udp_box_plot.sql @@ -0,0 +1,22 @@ +SELECT + (interval_item->'sum'->>'start')::float AS interval_start, + (interval_item->'sum'->>'bits_per_second')::float AS bits_per_second, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + l.command, + experiment.experiment_id +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'client'->'intervals' +) AS interval_item +WHERE l.command LIKE '%iperf3%' + AND l.command LIKE '%--udp%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] +ORDER BY interval_start diff --git a/metabase_prototype/queries/kirk.sql b/metabase_prototype/queries/kirk.sql new file mode 100644 index 00000000..c8345422 --- /dev/null +++ b/metabase_prototype/queries/kirk.sql @@ -0,0 +1,21 @@ +SELECT + (test_item->>'test_fqn') AS test_fqn, + (test_item->'test'->>'duration')::float AS duration, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + experiment.experiment_id +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'results' +) AS test_item +WHERE l.command LIKE '%kirk%' + AND test_item->'test'->>'duration' IS NOT NULL + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] +ORDER BY test_fqn; diff --git a/metabase_prototype/queries/kirk_comp.sql b/metabase_prototype/queries/kirk_comp.sql new file mode 100644 index 00000000..97559ba9 --- /dev/null +++ b/metabase_prototype/queries/kirk_comp.sql @@ -0,0 +1,37 @@ +SELECT + (test_item->>'test_fqn') AS test_fqn, + (test_item->'test'->>'duration')::float AS duration, + 'Experiment 1' AS experiment_label +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'results' +) AS test_item +WHERE l.command LIKE '%kirk%' + AND test_item->'test'->>'duration' IS NOT NULL + [[ AND os = {{os1}} ]] + [[ AND core_info = {{core_info1}} ]] + [[ AND started_at BETWEEN {{start1}} AND {{end1}} ]] + [[ AND type = {{type}} ]] + +UNION ALL + +SELECT + (test_item->>'test_fqn') AS test_fqn, + (test_item->'test'->>'duration')::float AS duration, + 'Experiment 2' AS experiment_label +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'results' +) AS test_item +WHERE l.command LIKE '%kirk%' + AND test_item->'test'->>'duration' IS NOT NULL + [[ AND os = {{os2}} ]] + [[ AND core_info = {{core_info2}} ]] + [[ AND CASE WHEN {{start2}} IS NULL THEN started_at BETWEEN {{start1}} AND {{end1}} ELSE started_at BETWEEN {{start2}} AND {{end2}} END ]] + [[ AND type = {{type}} ]] + +ORDER BY test_fqn; diff --git a/metabase_prototype/queries/pb_sched_pipe_comp.sql b/metabase_prototype/queries/pb_sched_pipe_comp.sql new file mode 100644 index 00000000..d1ad8abf --- /dev/null +++ b/metabase_prototype/queries/pb_sched_pipe_comp.sql @@ -0,0 +1,22 @@ +SELECT os, item, + (item->>'duration_sec')::float AS duration, + (item->>'usecs_per_op')::float AS usecs_per_op, + (item->>'ops_per_sec')::bigint AS ops_per_sec +FROM ( + SELECT jsonb_array_elements(CASE + WHEN jsonb_typeof(l.result::jsonb) = 'array' THEN l.result::jsonb + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'perf_metrics' AND jsonb_typeof(l.result::jsonb->'perf_metrics') = 'array' THEN l.result::jsonb->'perf_metrics' + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'perf_metrics' AND jsonb_typeof(l.result::jsonb->'perf_metrics') = 'object' THEN json_array((l.result::jsonb->'perf_metrics'->'test_type')::jsonb || (l.result::jsonb->'perf_metrics'->'time')::jsonb || (l.result::jsonb->'perf_metrics'->'metrics')::jsonb) + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'test_type' THEN json_array((l.result::jsonb->'test_type')::jsonb || (l.result::jsonb->'time')::jsonb || (l.result::jsonb->'metrics')::jsonb) + ELSE '[]'::jsonb + END) AS item, experiment.experiment_id, os, core_info, result + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = configuration.config_id + WHERE l.command LIKE '%perf bench%sched pipe%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND experiment.started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] + [[ AND l.command LIKE CONCAT('%', {{command}}, '%') ]] +) diff --git a/metabase_prototype/queries/perf_bench.sql b/metabase_prototype/queries/perf_bench.sql new file mode 100644 index 00000000..ec9bfee8 --- /dev/null +++ b/metabase_prototype/queries/perf_bench.sql @@ -0,0 +1,31 @@ +SELECT + -- Add here another metrics as columns if needed + (item->>'benchmark') AS benchmark, + (CASE + WHEN (item->>'duration_sec') IS NOT NULL THEN (item->>'duration_sec')::float + ELSE (item->>'total_time')::float + END) AS total_time, + (item->>'usecs_per_op')::float AS usecs_per_op, + (item->>'ops_per_sec')::bigint AS ops_per_sec, + (item->>'gb_per_sec_default')::float AS gb_per_sec_default, + (item->>'gb_per_sec_unrolled')::float AS gb_per_sec_unrolled, experiment.experiment_id, os, core_info +FROM ( + SELECT jsonb_array_elements(CASE + WHEN jsonb_typeof(l.result::jsonb) = 'array' THEN l.result::jsonb + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'perf_metrics' AND jsonb_typeof(l.result::jsonb->'perf_metrics') = 'array' THEN l.result::jsonb->'perf_metrics' + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'perf_metrics' AND jsonb_typeof(l.result::jsonb->'perf_metrics') = 'object' THEN json_array((l.result::jsonb->'perf_metrics'->'test_type')::jsonb || (l.result::jsonb->'perf_metrics'->'time')::jsonb || (l.result::jsonb->'perf_metrics'->'metrics')::jsonb) + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'test_type' THEN json_array((l.result::jsonb->'test_type')::jsonb || (l.result::jsonb->'time')::jsonb || (l.result::jsonb->'metrics')::jsonb) + ELSE '[]'::jsonb + END) AS item, experiment.experiment_id, os, core_info + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = configuration.config_id + WHERE l.command LIKE '%perf bench%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND experiment.started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] + [[ AND l.command LIKE CONCAT('%', {{command}}, '%') ]] +) subquery +JOIN experiment ON subquery.experiment_id = experiment.experiment_id +ORDER BY benchmark; diff --git a/metabase_prototype/queries/perf_bench_comp.sql b/metabase_prototype/queries/perf_bench_comp.sql new file mode 100644 index 00000000..06c566e7 --- /dev/null +++ b/metabase_prototype/queries/perf_bench_comp.sql @@ -0,0 +1,65 @@ +SELECT + -- Add here another metrics as columns if needed + (item->>'benchmark') AS benchmark, + (CASE + WHEN (item->>'duration_sec') IS NOT NULL THEN (item->>'duration_sec')::float + ELSE (item->>'total_time')::float + END) AS total_time, + (item->>'usecs_per_op')::float AS usecs_per_op, + (item->>'ops_per_sec')::bigint AS ops_per_sec, + (item->>'gb_per_sec_default')::float AS gb_per_sec_default, + (item->>'gb_per_sec_unrolled')::float AS gb_per_sec_unrolled, experiment.experiment_id, os, core_info, + 'Experiment 1' AS experiment_label +FROM ( + SELECT jsonb_array_elements(CASE + WHEN jsonb_typeof(l.result::jsonb) = 'array' THEN l.result::jsonb + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'perf_metrics' AND jsonb_typeof(l.result::jsonb->'perf_metrics') = 'array' THEN l.result::jsonb->'perf_metrics' + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'perf_metrics' AND jsonb_typeof(l.result::jsonb->'perf_metrics') = 'object' THEN json_array((l.result::jsonb->'perf_metrics'->'test_type')::jsonb || (l.result::jsonb->'perf_metrics'->'time')::jsonb || (l.result::jsonb->'perf_metrics'->'metrics')::jsonb) + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'test_type' THEN json_array((l.result::jsonb->'test_type')::jsonb || (l.result::jsonb->'time')::jsonb || (l.result::jsonb->'metrics')::jsonb) + ELSE '[]'::jsonb + END) AS item, experiment.experiment_id, os, core_info + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = configuration.config_id + WHERE l.command LIKE '%perf bench%' + [[ AND os = {{os1}} ]] + [[ AND core_info = {{core_info1}} ]] + [[ AND experiment.started_at BETWEEN {{start1}} AND {{end1}} ]] + [[ AND l.command LIKE CONCAT('%', {{command}}, '%') ]] +) AS subquery +JOIN experiment ON subquery.experiment_id = experiment.experiment_id + +UNION ALL + +SELECT + -- Add here another metrics as columns if needed + (item->>'benchmark') AS benchmark, + (CASE + WHEN (item->>'duration_sec') IS NOT NULL THEN (item->>'duration_sec')::float + ELSE (item->>'total_time')::float + END) AS total_time, + (item->>'usecs_per_op')::float AS usecs_per_op, + (item->>'ops_per_sec')::bigint AS ops_per_sec, + (item->>'gb_per_sec_default')::float AS gb_per_sec_default, + (item->>'gb_per_sec_unrolled')::float AS gb_per_sec_unrolled, experiment.experiment_id, os, core_info, + 'Experiment 2' AS experiment_label +FROM ( + SELECT jsonb_array_elements(CASE + WHEN jsonb_typeof(l.result::jsonb) = 'array' THEN l.result::jsonb + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'perf_metrics' AND jsonb_typeof(l.result::jsonb->'perf_metrics') = 'array' THEN l.result::jsonb->'perf_metrics' + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'perf_metrics' AND jsonb_typeof(l.result::jsonb->'perf_metrics') = 'object' THEN json_array((l.result::jsonb->'perf_metrics'->'test_type')::jsonb || (l.result::jsonb->'perf_metrics'->'time')::jsonb || (l.result::jsonb->'perf_metrics'->'metrics')::jsonb) + WHEN jsonb_typeof(l.result::jsonb) = 'object' AND l.result::jsonb ?? 'test_type' THEN json_array((l.result::jsonb->'test_type')::jsonb || (l.result::jsonb->'time')::jsonb || (l.result::jsonb->'metrics')::jsonb) + ELSE '[]'::jsonb + END) AS item, experiment.experiment_id, os, core_info + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = configuration.config_id + WHERE l.command LIKE '%perf bench%' + [[ AND os = {{os2}} ]] + [[ AND core_info = {{core_info2}} ]] + [[ AND CASE WHEN {{start2}} IS NULL THEN experiment.started_at BETWEEN {{start1}} AND {{end1}} ELSE experiment.started_at BETWEEN {{start2}} AND {{end2}} END ]] + [[ AND l.command LIKE CONCAT('%', {{command}}, '%') ]] +) AS subquery +JOIN experiment ON subquery.experiment_id = experiment.experiment_id + +ORDER BY benchmark; diff --git a/metabase_prototype/queries/slow_services.sql b/metabase_prototype/queries/slow_services.sql new file mode 100644 index 00000000..9d420cde --- /dev/null +++ b/metabase_prototype/queries/slow_services.sql @@ -0,0 +1,18 @@ +SELECT item->>'service_name' AS service, AVG((item->>'slow_time_s')::float) AS avg_time +FROM ( + SELECT + "configuration".os, + experiment.started_at, + command, + jsonb_array_elements(l.result::jsonb) AS item + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + WHERE l.command LIKE '%systemd-analyze critical-chain%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] +) subquery +WHERE item->>'service_name'IS NOT NULL +GROUP BY service +LIMIT 10 diff --git a/metabase_prototype/queries/slow_services_comp.sql b/metabase_prototype/queries/slow_services_comp.sql new file mode 100644 index 00000000..e817e8dd --- /dev/null +++ b/metabase_prototype/queries/slow_services_comp.sql @@ -0,0 +1,43 @@ +SELECT 'OS 1' AS experiment_label, service, avg_time FROM ( + SELECT item->>'service_name' AS service, AVG((item->>'slow_time_s')::float) AS avg_time + FROM ( + SELECT + "configuration".os, + experiment.started_at, + command, + jsonb_array_elements(l.result::jsonb) AS item + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + WHERE l.command LIKE '%systemd-analyze critical-chain%' + [[ AND os = {{os1}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + ) subquery + WHERE item->>'service_name'IS NOT NULL + GROUP BY service + LIMIT 5 +) + +UNION ALL + +SELECT 'OS 2' AS experiment_label, service, avg_time FROM ( + SELECT item->>'service_name' AS service, AVG((item->>'slow_time_s')::float) AS avg_time + FROM ( + SELECT + "configuration".os, + experiment.started_at, + command, + jsonb_array_elements(l.result::jsonb) AS item + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + WHERE l.command LIKE '%systemd-analyze critical-chain%' + [[ AND os = {{os2}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + ) subquery + WHERE item->>'service_name'IS NOT NULL + GROUP BY service + LIMIT 5 +) diff --git a/metabase_prototype/queries/slowest_syscalls.sql b/metabase_prototype/queries/slowest_syscalls.sql new file mode 100644 index 00000000..3a085262 --- /dev/null +++ b/metabase_prototype/queries/slowest_syscalls.sql @@ -0,0 +1,24 @@ +SELECT test_fqn, AVG(duration) as duration_avg FROM ( + SELECT + (test_item->>'test_fqn') AS test_fqn, + (test_item->'test'->>'duration')::float AS duration, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + experiment.experiment_id + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'results' + ) AS test_item + WHERE l.command LIKE '%kirk%' + AND test_item->'test'->>'duration' IS NOT NULL + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] +) GROUP BY test_fqn +ORDER BY duration_avg DESC +LIMIT 10 diff --git a/metabase_prototype/queries/slowest_syscalls_comp.sql b/metabase_prototype/queries/slowest_syscalls_comp.sql new file mode 100644 index 00000000..98b32a6e --- /dev/null +++ b/metabase_prototype/queries/slowest_syscalls_comp.sql @@ -0,0 +1,55 @@ +SELECT 'OS 1' AS experiment_label, test_fqn, duration_avg FROM ( + SELECT test_fqn, AVG(duration) as duration_avg FROM ( + SELECT + (test_item->>'test_fqn') AS test_fqn, + (test_item->'test'->>'duration')::float AS duration, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + experiment.experiment_id + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'results' + ) AS test_item + WHERE l.command LIKE '%kirk%' + AND test_item->'test'->>'duration' IS NOT NULL + [[ AND os = {{os1}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] + ) GROUP BY test_fqn + ORDER BY duration_avg DESC + LIMIT 10 +) + +UNION ALL + +SELECT 'OS 2' AS experiment_label, test_fqn, duration_avg FROM ( + SELECT test_fqn, AVG(duration) as duration_avg FROM ( + SELECT + (test_item->>'test_fqn') AS test_fqn, + (test_item->'test'->>'duration')::float AS duration, + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + experiment.experiment_id + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + CROSS JOIN LATERAL jsonb_array_elements( + (l.result::jsonb)->'results' + ) AS test_item + WHERE l.command LIKE '%kirk%' + AND test_item->'test'->>'duration' IS NOT NULL + [[ AND os = {{os2}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]] + [[ AND type = {{experiment_filter}} ]] + ) GROUP BY test_fqn + ORDER BY duration_avg DESC + LIMIT 10 +) diff --git a/metabase_prototype/queries/systemd_time_avg_comp.sql b/metabase_prototype/queries/systemd_time_avg_comp.sql new file mode 100644 index 00000000..f57cfec0 --- /dev/null +++ b/metabase_prototype/queries/systemd_time_avg_comp.sql @@ -0,0 +1,19 @@ +SELECT os, +AVG(total_time) AS avg_total, +AVG(userspace_time) AS avg_userspace, +AVG(kernel_time) AS avg_kernel +FROM ( + SELECT + "configuration".os, + experiment.started_at, + experiment.experiment_id, + result, + (result->>'total_time')::float AS total_time, + (result->>'userspace_time')::float AS userspace_time, + (result->>'kernel_time')::float AS kernel_time + FROM util_run_result AS l + JOIN experiment ON l.experiment_id = experiment.experiment_id + JOIN "configuration" ON experiment.config_id = "configuration".config_id + WHERE l.command LIKE '%systemd-analyze time%' +) +GROUP BY os diff --git a/metabase_prototype/queries/systemd_time_comp.sql b/metabase_prototype/queries/systemd_time_comp.sql new file mode 100644 index 00000000..07f92a7b --- /dev/null +++ b/metabase_prototype/queries/systemd_time_comp.sql @@ -0,0 +1,17 @@ +SELECT + "configuration".os, + "configuration".core_info, + experiment.type, + experiment.started_at, + experiment.experiment_id, + command, + (result->>'total_time')::float AS total_time, + (result->>'userspace_time')::float AS userspace_time, + (result->>'kernel_time')::float AS kernel_time +FROM util_run_result AS l +JOIN experiment ON l.experiment_id = experiment.experiment_id +JOIN "configuration" ON experiment.config_id = "configuration".config_id +WHERE l.command LIKE '%systemd-analyze time%' + [[ AND os = {{os}} ]] + [[ AND core_info = {{core_info}} ]] + [[ AND started_at BETWEEN {{start}} AND {{end}} ]]