A central part of agile in general, and XP in particular, is the ability (and actually, necessity) to create the software incrementally at each iteration.
This is achieved by adding new code at each iteration, but also by refactoring existing code written during previous iterations. This refactoring can be safely achieved only if you have a strong test system, able to check that the whole software product don't break when you add new code, or when you modify existing ones.
Hence, when you develop your software, you finally create two separate, but strongly connected systems:
- The software product you want to provide to your users
- Its test harness that helps you build it incrementally
TDD is the best known practice to create this test harness, enabling you to create incrementally your software using an agile approach.