mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-02 16:26:48 +00:00
- `src/test/telemetry/MetricsRegistry_test.cpp` (Beast `unit_test::suite` format under `src/test/`) duplicates the GTest version already maintained at `src/tests/libxrpl/telemetry/MetricsRegistry.cpp`. Project rule (`tasks/lessons.md` §Test Format): all new tests use GTest under `src/tests/libxrpl/`. The GTest version exercises the same four cases (disabled construction, start/stop lifecycle, recording no-op, destructor-calls-stop). Deleting the Beast duplicate eliminates drift and keeps the test authoritative in one place. - Drop the matching `test.telemetry > xrpl.basics/xrpl.core/xrpld.telemetry` entries from `.github/scripts/levelization/results/ordering.txt` because `xrpl.test.telemetry` (the GTest binary) retains its own entries; the removed ones belonged to the deleted Beast suite. - `.claude/instructions.md` was committed as a symlink to an author-local absolute path (`/home/pratik/sourceCode/personal/Rippled/ instructions.md`) that does not exist for any other contributor or in CI. Remove the symlink from git tracking and add `.claude/` to `.gitignore` so future agent commits do not re-add per-developer settings.
91 lines
1.1 KiB
Plaintext
91 lines
1.1 KiB
Plaintext
# .gitignore
|
|
# cspell: disable
|
|
|
|
# Macintosh Desktop Services Store files.
|
|
.DS_Store
|
|
|
|
# Build, intermediate, and temporary artifacts.
|
|
*~
|
|
*.o
|
|
*.pdb
|
|
*.swp
|
|
/.clangd
|
|
Debug/
|
|
Release/
|
|
/.build/
|
|
/.venv/
|
|
/build/
|
|
/db/
|
|
/out.txt
|
|
/Testing/
|
|
/tmp/
|
|
CMakeSettings.json
|
|
CMakeUserPresets.json
|
|
|
|
# Coverage files.
|
|
*.gcno
|
|
*.gcda
|
|
*.gcov
|
|
|
|
# Profiling data.
|
|
gmon.out
|
|
|
|
# Levelization data.
|
|
.github/scripts/levelization/results/*
|
|
!.github/scripts/levelization/results/loops.txt
|
|
!.github/scripts/levelization/results/ordering.txt
|
|
|
|
# Customized configs.
|
|
/rippled.cfg
|
|
/xrpld.cfg
|
|
/validators.txt
|
|
|
|
# Locally patched Conan recipes
|
|
external/conan-center-index/
|
|
|
|
# Local conan directory
|
|
.conan
|
|
|
|
# XCode IDE.
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata
|
|
profile
|
|
*.moved-aside
|
|
DerivedData
|
|
*.hmap
|
|
|
|
# JetBrains IDE.
|
|
/.idea/
|
|
|
|
# Microsoft Visual Studio IDE.
|
|
/.vs/
|
|
/.vscode/
|
|
|
|
# zed IDE.
|
|
/.zed/
|
|
|
|
# AI tools.
|
|
/.agent
|
|
/.agents
|
|
/.augment
|
|
/.claude
|
|
/CLAUDE.md
|
|
|
|
# Python
|
|
__pycache__
|
|
|
|
# Direnv's directory
|
|
/.direnv
|
|
|
|
# clangd cache
|
|
/.cache
|
|
docker/telemetry/workload/__pycache__/
|
|
.claude/
|